Returns a representation of "c[0] * ... * c[n-1]" for c in clauses
(expressions ...Expression)
| 423 | |
| 424 | // Returns a representation of "c[0] * ... * c[n-1]" for c in clauses |
| 425 | func Mul(expressions ...Expression) Expression { |
| 426 | return &arithmeticExpression{ |
| 427 | expressions: expressions, |
| 428 | operator: []byte(" * "), |
| 429 | } |
| 430 | } |
| 431 | |
| 432 | // Returns a representation of "c[0] / ... / c[n-1]" for c in clauses |
| 433 | func Div(expressions ...Expression) Expression { |