rtrie 0.1.1

Randomized ternary search tries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate num_traits;

#[cfg(test)]
#[macro_use]
extern crate quickcheck;

extern crate rand;

mod ternary;
pub use ternary::{Priority, TernaryTrie};

#[cfg(test)]
mod test;