Next implements the Datum interface.
(ctx context.Context, cmpCtx CompareContext)
| 5894 | |
| 5895 | // Next implements the Datum interface. |
| 5896 | func (d *DOidWrapper) Next(ctx context.Context, cmpCtx CompareContext) (Datum, bool) { |
| 5897 | next, ok := d.Wrapped.Next(ctx, cmpCtx) |
| 5898 | return wrapWithOid(next, d.Oid), ok |
| 5899 | } |
| 5900 | |
| 5901 | // IsMax implements the Datum interface. |
| 5902 | func (d *DOidWrapper) IsMax(ctx context.Context, cmpCtx CompareContext) bool { |
nothing calls this directly
no test coverage detected