radix_trees 0.2.0

Various radix tree (trie) data structures.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! This crate contains various implementations of radix trees (also called tries),
//! which provide efficient storage and lookup of data that shares long common prefixes.

#![no_std]
mod key_trait;
pub mod ptree;

extern crate alloc;
#[cfg(feature = "std")]
extern crate std;

pub use crate::key_trait::*;