lexrs 0.2.0

Efficient lexicon data structures: Trie and DAWG
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod dawg;
pub mod error;
pub mod node;
pub mod trie;
pub mod utils;

pub use dawg::Dawg;
pub use error::LexError;
pub use trie::Trie;

#[cfg(feature = "python")]
pub mod python;