( left: T1, right: T2, )
| 599 | } |
| 600 | |
| 601 | export function add<T1 extends ExpressionLike, T2 extends ExpressionLike>( |
| 602 | left: T1, |
| 603 | right: T2, |
| 604 | ): BinaryNumericReturnType { |
| 605 | return new Func(`add`, [ |
| 606 | toExpression(left), |
| 607 | toExpression(right), |
| 608 | ]) as BinaryNumericReturnType |
| 609 | } |
| 610 | |
| 611 | export function subtract<T1 extends ExpressionLike, T2 extends ExpressionLike>( |
| 612 | left: T1, |