consolidate key/value types; consistent interface arguments

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-07-02 09:51:00 +00:00
parent 46423cab4f
commit a2d25215a3
8 changed files with 172 additions and 79 deletions

View file

@ -6,6 +6,7 @@ mod iter;
mod map;
pub mod maps;
mod opts;
mod slice;
mod util;
mod watchers;
@ -17,6 +18,7 @@ pub(crate) use engine::Engine;
pub use handle::Handle;
pub use iter::Iter;
pub use map::Map;
pub use slice::{Key, KeyVal, OwnedKey, OwnedKeyVal, OwnedVal, Val};
pub(crate) use util::{or_else, result};
conduit::mod_ctor! {}