mirror of
https://github.com/google/leveldb.git
synced 2024-11-23 19:48:59 +08:00
[jumbo] Add begin()/end() to Slice.
This allows this type to meet the requirements of e.g. std::ranges::range, which is necessary for it to work with the std::span range constructor, or the "non-legacy" constructor for Chromium's base::span. Bug: none
This commit is contained in:
parent
068d5ee1a3
commit
2cc36eb566
@ -51,6 +51,9 @@ class LEVELDB_EXPORT Slice {
|
||||
// Return true iff the length of the referenced data is zero
|
||||
bool empty() const { return size_ == 0; }
|
||||
|
||||
const char* begin() const { return data(); }
|
||||
const char* end() const { return data() + size(); }
|
||||
|
||||
// Return the ith byte in the referenced data.
|
||||
// REQUIRES: n < size()
|
||||
char operator[](size_t n) const {
|
||||
|
Loading…
Reference in New Issue
Block a user