//! panoradix is a set of structures based of the [Radix
//! tree](https://en.wikipedia.org/wiki/Radix_tree) data structure, optimized for indexing strings
//! "by prefix".
pub use RadixMap;
pub use RadixSet;
pub use ExtensibleKey as RadixKey;
/// Module containing a map based on a [Radix tree](https://en.wikipedia.org/wiki/Radix_tree).
/// Module containing a set based on a [Radix tree](https://en.wikipedia.org/wiki/Radix_tree).