Decoder allows decoding of a single value stored at a specific offset in the database.
| 11 | // Decoder allows decoding of a single value stored at a specific offset |
| 12 | // in the database. |
| 13 | type Decoder struct { |
| 14 | d DataDecoder |
| 15 | offset uint |
| 16 | nextOffset uint |
| 17 | hasNextOffset bool |
| 18 | } |
| 19 | |
| 20 | type decoderOptions struct { |
| 21 | // Intentionally empty for now. DecoderOption callbacks are still invoked so |
nothing calls this directly
no outgoing calls
no test coverage detected