Next implements the Datum interface.
(_ *EvalContext)
| 1512 | |
| 1513 | // Next implements the Datum interface. |
| 1514 | func (d *DUuid) Next(_ *EvalContext) (Datum, bool) { |
| 1515 | i := d.ToUint128() |
| 1516 | u := uuid.FromUint128(i.Add(1)) |
| 1517 | return NewDUuid(DUuid{u}), true |
| 1518 | } |
| 1519 | |
| 1520 | // IsMax implements the Datum interface. |
| 1521 | func (d *DUuid) IsMax(_ *EvalContext) bool { |
nothing calls this directly
no test coverage detected