diff --git a/crates/brk_vec/README.md b/crates/brk_vec/README.md index f0d6d3854..45325123b 100644 --- a/crates/brk_vec/README.md +++ b/crates/brk_vec/README.md @@ -10,32 +10,6 @@ A very small, fast, efficient and simple storable `vec` which uses `mmap2` for s - [ ] Insert - [ ] Remove -## Example - -```rust -use std::path::Path; - -use brk_vec::{AnyStorableVec, StorableVec}; - -fn main() -> color_eyre::Result<()> { - color_eyre::install()?; - - { - let mut vec: StorableVec = StorableVec::import(Path::new("./v"))?; - vec.push(21); - dbg!(vec.get(0)?); // 21 - vec.flush()?; - } - - { - let vec: StorableVec = StorableVec::import(Path::new("./v"))?; - dbg!(vec.get(0)?); // 21 - } - - Ok(()) -} -``` - ## Disclaimer Portability will depend on the type of values.