1 2 3 4 5 6 7 8 9
//! This module provides a [trie](https://en.wikipedia.org/wiki/Trie)-based implementation of a relation. mod implementation; mod tree_trie_iter; #[cfg(test)] mod tests; pub use implementation::TreeTrie;