CurrentEx is a more advanced form of Current() that returns more metadata for each entry. It is more useful when used with IteratorOptions.IncludeDeletions of true. It returns ErrIteratorDone if the iterator is done. Otherwise, the current EntryEx, key, val are returned, which should be treated a
()
| 434 | // current EntryEx, key, val are returned, which should be treated |
| 435 | // as immutable or read-only. |
| 436 | CurrentEx() (entryEx EntryEx, key, val []byte, err error) |
| 437 | } |
| 438 | |
| 439 | // WriteOptions are provided to Collection.ExecuteBatch(). |
no outgoing calls