rudy 0.0.1

Judy array implementation in pure Rust
Documentation
extern crate rudy;

use rudy::rudymap::RudyMap;

fn main() {
    let mut map: RudyMap<u32, u32> = RudyMap::new();
    let low = 0;
    let high = 100_000_000;
    for i in low..high {
        if let Some(evicted) = map.insert(i, i + 1) {
            println!("Evicted: {}", evicted);
        }
    }
    for i in low..high {
        if map.get(i) != Some(&(i + 1)) {
            println!("map({}) -> {:?} != {}", i, map.get(i), i + 1);
        }
    }
}