Returns a representation of "c[0] / ... / c[n-1]" for c in clauses
(expressions ...Expression)
| 431 | |
| 432 | // Returns a representation of "c[0] / ... / c[n-1]" for c in clauses |
| 433 | func Div(expressions ...Expression) Expression { |
| 434 | return &arithmeticExpression{ |
| 435 | expressions: expressions, |
| 436 | operator: []byte(" / "), |
| 437 | } |
| 438 | } |
| 439 | |
| 440 | // Returns a representation of "a=b" |
| 441 | func Eq(lhs, rhs Expression) BoolExpression { |