IsMax implements the Datum interface.
(ctx *EvalContext)
| 3837 | |
| 3838 | // IsMax implements the Datum interface. |
| 3839 | func (d *Placeholder) IsMax(ctx *EvalContext) bool { |
| 3840 | return d.mustGetValue(ctx).IsMax(ctx) |
| 3841 | } |
| 3842 | |
| 3843 | // Max implements the Datum interface. |
| 3844 | func (d *Placeholder) Max(ctx *EvalContext) (Datum, bool) { |
nothing calls this directly
no test coverage detected