DocumentIterator iterates over documents. Always call Stop on the iterator.
| 262 | // |
| 263 | // Always call Stop on the iterator. |
| 264 | type DocumentIterator struct { |
| 265 | iter driver.DocumentIterator |
| 266 | coll *Collection |
| 267 | err error // already wrapped |
| 268 | } |
| 269 | |
| 270 | // Next stores the next document in dst. It returns io.EOF if there are no more |
| 271 | // documents. |
nothing calls this directly
no outgoing calls
no test coverage detected