(arg: T)
| 657 | } |
| 658 | |
| 659 | export function max<T extends ExpressionLike>(arg: T): AggregateReturnType<T> { |
| 660 | return new Aggregate(`max`, [toExpression(arg)]) as AggregateReturnType<T> |
| 661 | } |
| 662 | |
| 663 | /** |
| 664 | * List of comparison function names that can be used with indexes |