(left: any, right: any)
| 183 | ): BasicExpression<boolean> |
| 184 | export function lt<T>(left: Aggregate<T>, right: any): BasicExpression<boolean> |
| 185 | export function lt(left: any, right: any): BasicExpression<boolean> { |
| 186 | return new Func(`lt`, [toExpression(left), toExpression(right)]) |
| 187 | } |
| 188 | |
| 189 | export function lte<T>( |
| 190 | left: ComparisonOperand<T>, |
no test coverage detected