Max implements the Datum interface.
(ctx *EvalContext)
| 3842 | |
| 3843 | // Max implements the Datum interface. |
| 3844 | func (d *Placeholder) Max(ctx *EvalContext) (Datum, bool) { |
| 3845 | return d.mustGetValue(ctx).Max(ctx) |
| 3846 | } |
| 3847 | |
| 3848 | // Min implements the Datum interface. |
| 3849 | func (d *Placeholder) Min(ctx *EvalContext) (Datum, bool) { |
nothing calls this directly
no test coverage detected