Returns a representation of "c[0] - ... - c[n-1]" for c in clauses
(expressions ...Expression)
| 415 | |
| 416 | // Returns a representation of "c[0] - ... - c[n-1]" for c in clauses |
| 417 | func Sub(expressions ...Expression) Expression { |
| 418 | return &arithmeticExpression{ |
| 419 | expressions: expressions, |
| 420 | operator: []byte(" - "), |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | // Returns a representation of "c[0] * ... * c[n-1]" for c in clauses |
| 425 | func Mul(expressions ...Expression) Expression { |