| 123 | /// Return the data of the key. |
| 124 | string& data() { return key_; } |
| 125 | Slice data_slice() const { return Slice(key_.c_str(), key_.size()); } |
| 126 | |
| 127 | /// Return if the key is empty. |
| 128 | bool empty() const { return key_.empty(); } |
no test coverage detected