Returns the key at the current position. REQUIRES: status().ok() && Valid()
| 279 | // Returns the key at the current position. |
| 280 | // REQUIRES: status().ok() && Valid() |
| 281 | StringPiece key() const { return iter_->key(); } |
| 282 | // Returns the raw value at the current position. |
| 283 | // REQUIRES: status().ok() && Valid() |
| 284 | StringPiece value() const { return iter_->value(); } |
no outgoing calls