Prev implements the Datum interface.
(ctx context.Context, cmpCtx CompareContext)
| 5888 | |
| 5889 | // Prev implements the Datum interface. |
| 5890 | func (d *DOidWrapper) Prev(ctx context.Context, cmpCtx CompareContext) (Datum, bool) { |
| 5891 | prev, ok := d.Wrapped.Prev(ctx, cmpCtx) |
| 5892 | return wrapWithOid(prev, d.Oid), ok |
| 5893 | } |
| 5894 | |
| 5895 | // Next implements the Datum interface. |
| 5896 | func (d *DOidWrapper) Next(ctx context.Context, cmpCtx CompareContext) (Datum, bool) { |
nothing calls this directly
no test coverage detected