Skip to main content

word_trie/
lib.rs

1pub mod trie;
2pub mod builder;
3
4pub use trie::{Trie, Dictionary};
5pub use builder::TrieBuilder;