Prev implements the Datum interface.
(_ *EvalContext)
| 675 | |
| 676 | // Prev implements the Datum interface. |
| 677 | func (d *DInt) Prev(_ *EvalContext) (Datum, bool) { |
| 678 | return NewDInt(*d - 1), true |
| 679 | } |
| 680 | |
| 681 | // Next implements the Datum interface. |
| 682 | func (d *DInt) Next(_ *EvalContext) (Datum, bool) { |