()
| 7 | type iteratorError string |
| 8 | |
| 9 | func (e iteratorError) Error() string { |
| 10 | return string(e) |
| 11 | } |
| 12 | |
| 13 | // ErrInvalidIteratorState is reported when iterator is in invalid state |
| 14 | const ErrInvalidIteratorState = iteratorError("Iterator is in invalid state. Use SetNext() to move to next position") |
no outgoing calls