Next advances the iterator to the next value, which will then be available through the Result method. It returns false if no further advancement is possible, or if an error was encountered during iteration. Err should be consulted to distinguish between the two cases.
(ctx context.Context)
| 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. |
no outgoing calls