Remove pre-iterator concepts

- No more IndexRecord/Result/dbGetPage nonsense
 - Queue is just track ids
 - i am so tired and have so much to do
This commit is contained in:
jacqueline
2023-12-07 17:00:30 +11:00
parent 009f69c929
commit 3f7f199cb9
31 changed files with 725 additions and 2328 deletions
+3
View File
@@ -35,6 +35,9 @@ class LEVELDB_EXPORT Slice {
// Create a slice that refers to the contents of "s"
Slice(const std::string& s) : data_(s.data()), size_(s.size()) {}
// Create a slice that refers to the contents of "s"
Slice(std::string_view s) : data_(s.data()), size_(s.size()) {}
// Create a slice that refers to s[0,strlen(s)-1]
Slice(const char* s) : data_(s), size_(strlen(s)) {}