Returns a representation of "not expr"
(expr BoolExpression)
| 228 | |
| 229 | // Returns a representation of "not expr" |
| 230 | func Not(expr BoolExpression) BoolExpression { |
| 231 | return &negateExpression{ |
| 232 | nested: expr, |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | // Representation of binary operations (e.g. comparisons, arithmetic) |
| 237 | type binaryExpression struct { |
no outgoing calls