Update godoc.
This commit is contained in:
parent
6f5d25ea9f
commit
57added50a
7 changed files with 28 additions and 17 deletions
|
|
@ -4,9 +4,9 @@ import "errors"
|
|||
|
||||
//----------- Logical operators ---------------//
|
||||
|
||||
// Returns a representation of "not expr"
|
||||
func NOT(expr BoolExpression) BoolExpression {
|
||||
return newPrefixBoolOperator(expr, "NOT")
|
||||
// Returns negation of bool expression expr
|
||||
func NOT(exp BoolExpression) BoolExpression {
|
||||
return newPrefixBoolOperator(exp, "NOT")
|
||||
}
|
||||
|
||||
func BIT_NOT(expr IntegerExpression) IntegerExpression {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue