Iterator iterator
| 8 | |
| 9 | // Iterator iterator |
| 10 | type Iterator struct { |
| 11 | indexIter index.Iterator |
| 12 | db *DB |
| 13 | options config.IteratorOptions |
| 14 | } |
| 15 | |
| 16 | // NewIterator Initializes the iterator |
| 17 | func (db *DB) NewIterator(opt config.IteratorOptions) *Iterator { |
nothing calls this directly
no outgoing calls
no test coverage detected