(left: any, right: any)
| 144 | ): BasicExpression<boolean> |
| 145 | export function eq<T>(left: Aggregate<T>, right: any): BasicExpression<boolean> |
| 146 | export function eq(left: any, right: any): BasicExpression<boolean> { |
| 147 | return new Func(`eq`, [toExpression(left), toExpression(right)]) |
| 148 | } |
| 149 | |
| 150 | export function gt<T>( |
| 151 | left: ComparisonOperand<T>, |
no test coverage detected