Scanner is an iterator that lists all results sequentially, but not necessarily in a sorted order.
| 4 | |
| 5 | // Scanner is an iterator that lists all results sequentially, but not necessarily in a sorted order. |
| 6 | type Scanner interface { |
| 7 | IteratorBase |
| 8 | |
| 9 | // Next advances the iterator to the next value, which will then be available through |
| 10 | // the Result method. It returns false if no further advancement is possible, or if an |
| 11 | // error was encountered during iteration. Err should be consulted to distinguish |
| 12 | // between the two cases. |
| 13 | Next(ctx context.Context) bool |
| 14 | } |
| 15 | |
| 16 | // Index is an index lookup iterator. It allows to check if an index contains a specific value. |
| 17 | type Index interface { |
no outgoing calls
no test coverage detected