reimplement iterator from lowlevel

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-07-02 00:03:54 +00:00
parent 6dd6e4bfaf
commit 0522fe7d92
3 changed files with 115 additions and 29 deletions

View file

@ -1,6 +1,7 @@
mod cork;
mod database;
mod engine;
mod iter;
mod map;
pub mod maps;
mod opts;
@ -12,6 +13,7 @@ extern crate rust_rocksdb as rocksdb;
pub use database::Database;
pub(crate) use engine::Engine;
pub use iter::Iter;
pub use map::Map;
pub(crate) use util::{or_else, result};