(h: string, a: Expression[])
| 271 | const mul = (a: Expression[]) => ce.function('Multiply', a); |
| 272 | const sub = (a: Expression, b: Expression) => ce.function('Subtract', [a, b]); |
| 273 | const div = (a: Expression, b: Expression) => ce.function('Divide', [a, b]); |
| 274 | const pow = (a: Expression, b: Expression) => ce.function('Power', [a, b]); |
| 275 | const neg = (a: Expression) => ce.function('Negate', [a]); |
| 276 | const fn = (h: string, a: Expression[]) => ce.function(h, a); |