//! Trie
//!
//! This sub-crate provides Trie implementations.
/// An ordered tree to manage a set of keys. It can answer whether it contains a given key or not.
///
/// Keys are any values that can be converted to a slice of alphabets (type `T`).
pub use TrieLouds;
pub use TrieVec;