Get writes the bytes representing the slice to out, starting at offset bytes. This is equivalent to: copy(out, data[offset:]).
(ctx context.Context, offset uint64, out []byte)
| 27 | // Get writes the bytes representing the slice to out, starting at offset |
| 28 | // bytes. This is equivalent to: copy(out, data[offset:]). |
| 29 | Get(ctx context.Context, offset uint64, out []byte) error |
| 30 | |
| 31 | // NewReader returns an io.Reader to efficiently read from the slice. |
| 32 | // There shouldn't be a need to wrap this in additional buffers. |
no outgoing calls