Seeks to the first position in the bundle whose key is no less than "key". REQUIRES: status().ok()
| 269 | // Seeks to the first position in the bundle whose key is no less than "key". |
| 270 | // REQUIRES: status().ok() |
| 271 | void Seek(StringPiece key) { return iter_->Seek(key); } |
| 272 | // Moves to the next position in the bundle. |
| 273 | // REQUIRES: status().ok() |
| 274 | void Next() const { iter_->Next(); } |
no outgoing calls