Next implements the Datum interface.
(_ *EvalContext)
| 680 | |
| 681 | // Next implements the Datum interface. |
| 682 | func (d *DInt) Next(_ *EvalContext) (Datum, bool) { |
| 683 | return NewDInt(*d + 1), true |
| 684 | } |
| 685 | |
| 686 | // IsMax implements the Datum interface. |
| 687 | func (d *DInt) IsMax(_ *EvalContext) bool { |