radix_trees 0.1.0

Various radix tree (trie) data structures.
Documentation
1
2
3
4
5
6
7
8
9
10
//! 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;

pub use crate::key_trait::*;