Moves to the next position in the bundle. REQUIRES: status().ok()
| 272 | // Moves to the next position in the bundle. |
| 273 | // REQUIRES: status().ok() |
| 274 | void Next() const { iter_->Next(); } |
| 275 | // Returns true iff the reader is positioned to a key/val pair. |
| 276 | // REQUIRES: status().ok() |
| 277 | bool Valid() const { return iter_->Valid(); } |
no outgoing calls