WalkFn is used when walking the slimtrie. Takes a key and value, returning false if iteration should be terminated. If withValue is false when calling NewIter(), value is always nil. Since 0.5.11
func(key []byte, value []byte) bool
| 17 | // |
| 18 | // Since 0.5.11 |
| 19 | type WalkFn func(key []byte, value []byte) bool |
| 20 | |
| 21 | // ScanFrom iterates key-values in the slimtrie and pass every key-value pair to |
| 22 | // a callback function fn. |
nothing calls this directly
no outgoing calls
no test coverage detected