ScanIterator is used to incrementally iterate over a collection of elements.
| 6 | |
| 7 | // ScanIterator is used to incrementally iterate over a collection of elements. |
| 8 | type ScanIterator struct { |
| 9 | cmd *ScanCmd |
| 10 | pos int |
| 11 | } |
| 12 | |
| 13 | // Err returns the last iterator error, if any. |
| 14 | func (it *ScanIterator) Err() error { |
nothing calls this directly
no outgoing calls
no test coverage detected