Crates.io | veb |
lib.rs | veb |
version | 0.1.0 |
source | src |
created_at | 2021-12-24 23:23:10.787338 |
updated_at | 2021-12-24 23:23:10.787338 |
description | Implementation of a van Emde Boas tree |
homepage | |
repository | https://github.com/Stranger6667/veb |
max_upload_size | |
id | 502804 |
size | 5,779 |
A WIP Rust implementation of a van Emde Boas tree.
fn main() {
let mut tree = veb::VebTree::new(1024);
tree.insert(50);
assert!(tree.contains(50));
assert!(!tree.contains(49));
}
NOTE: This is an alpha version and is not ready for production use.
TODO:
From
impls (e.g. &[usize]
)