(left: any, right: any)
| 170 | ): BasicExpression<boolean> |
| 171 | export function gte<T>(left: Aggregate<T>, right: any): BasicExpression<boolean> |
| 172 | export function gte(left: any, right: any): BasicExpression<boolean> { |
| 173 | return new Func(`gte`, [toExpression(left), toExpression(right)]) |
| 174 | } |
| 175 | |
| 176 | export function lt<T>( |
| 177 | left: ComparisonOperand<T>, |
no test coverage detected