(left: any, right: any)
| 196 | ): BasicExpression<boolean> |
| 197 | export function lte<T>(left: Aggregate<T>, right: any): BasicExpression<boolean> |
| 198 | export function lte(left: any, right: any): BasicExpression<boolean> { |
| 199 | return new Func(`lte`, [toExpression(left), toExpression(right)]) |
| 200 | } |
| 201 | |
| 202 | // Overloads for and() - support 2 or more arguments |
| 203 | export function and( |
no test coverage detected