(prefix []byte)
| 19 | // PrefixReader provides prefixed operations |
| 20 | type PrefixReader interface { |
| 21 | HasPrefix(prefix []byte) bool |
| 22 | ProcessByPrefix(prefix []byte, proc StorageProcessor) error |
| 23 | KeysByPrefix(prefix []byte) [][]byte |
| 24 | FetchByPrefix(prefix []byte) [][]byte |
no outgoing calls