| 34 | return data_iter_.key(); |
| 35 | } |
| 36 | Slice value() const override { |
| 37 | assert(Valid()); |
| 38 | return data_iter_.value(); |
| 39 | } |
| 40 | Status status() const override { |
| 41 | // It'd be nice if status() returned a const Status& instead of a Status |
| 42 | if (!index_iter_.status().ok()) { |