Next implements the Datum interface.
(ctx context.Context, cmpCtx CompareContext)
| 1542 | |
| 1543 | // Next implements the Datum interface. |
| 1544 | func (d *DBytes) Next(ctx context.Context, cmpCtx CompareContext) (Datum, bool) { |
| 1545 | return NewDBytes(DBytes(encoding.BytesNext([]byte(*d)))), true |
| 1546 | } |
| 1547 | |
| 1548 | // IsMax implements the Datum interface. |
| 1549 | func (*DBytes) IsMax(ctx context.Context, cmpCtx CompareContext) bool { |