Ver código fonte

Merge pull request #1202 from pkasting/main

[jumbo] Add begin()/end() to Slice.
xry
Austin Sullivan 3 meses atrás
committed by GitHub
pai
commit
23e35d792b
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: B5690EEEBB952194
1 arquivos alterados com 3 adições e 0 exclusões
  1. +3
    -0
      include/leveldb/slice.h

+ 3
- 0
include/leveldb/slice.h Ver arquivo

@ -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 {

Carregando…
Cancelar
Salvar