| 7 | ) |
| 8 | |
| 9 | type Iterator struct { |
| 10 | db *DB |
| 11 | seekKey string |
| 12 | results query.Results |
| 13 | current query.Result |
| 14 | } |
| 15 | |
| 16 | // Returns the current iterator key |
| 17 | func (it *Iterator) Key() []byte { |
nothing calls this directly
no outgoing calls
no test coverage detected