Next implements the Datum interface.
(_ *EvalContext)
| 1410 | |
| 1411 | // Next implements the Datum interface. |
| 1412 | func (d *DBytes) Next(_ *EvalContext) (Datum, bool) { |
| 1413 | return NewDBytes(DBytes(Key(*d).Next())), true |
| 1414 | } |
| 1415 | |
| 1416 | // IsMax implements the Datum interface. |
| 1417 | func (*DBytes) IsMax(_ *EvalContext) bool { |