meowstore_bindb 0.1.0

Bindb.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(generic_const_exprs)]

pub mod storage;
mod private;
mod utils;
//mod tests;


// fn benchmark<R>(msg: &'static str, f: impl FnOnce() -> R) -> R {
//     let start = std::time::Instant::now();
//     let r = f();
//     let elapsed = start.elapsed().as_millis();
//     println!("{}: {} ms.", msg, elapsed);
//     r
// }