StringIter iterates over a sorted list of strings.
| 937 | |
| 938 | // StringIter iterates over a sorted list of strings. |
| 939 | type StringIter interface { |
| 940 | // Next advances the iterator and returns true if another value was found. |
| 941 | Next() bool |
| 942 | |
| 943 | // At returns the value at the current iterator position. |
| 944 | At() string |
| 945 | |
| 946 | // Err returns the last error of the iterator. |
| 947 | Err() error |
| 948 | } |
| 949 | |
| 950 | type Reader struct { |
| 951 | b ByteSlice |
no outgoing calls
no test coverage detected
searching dependent graphs…