SymbolIterator iterates through all symbols in the index.
| 26 | |
| 27 | // SymbolIterator iterates through all symbols in the index. |
| 28 | type SymbolIterator interface { |
| 29 | Close() error |
| 30 | Next() bool |
| 31 | At() string |
| 32 | Err() error |
| 33 | } |
| 34 | |
| 35 | // SeriesIterator iterates over series and their labels. |
| 36 | type SeriesIterator interface { |
no outgoing calls
no test coverage detected