| 192 | return (*flist_)[index_]->largest.Encode(); |
| 193 | } |
| 194 | Slice value() const override { |
| 195 | assert(Valid()); |
| 196 | EncodeFixed64(value_buf_, (*flist_)[index_]->number); |
| 197 | EncodeFixed64(value_buf_ + 8, (*flist_)[index_]->file_size); |
| 198 | return Slice(value_buf_, sizeof(value_buf_)); |
| 199 | } |
| 200 | Status status() const override { return Status::OK(); } |
| 201 | |
| 202 | private: |
nothing calls this directly
no test coverage detected