Crate crawdad

source · []
Expand description

🦞 Crawdad: ChaRActer-Wise Double-Array Dictionary

Crawdad is a library of natural language dictionaries using character-wise double-array tries. The implementation is optimized for strings of multibyte-characters, and you can enjoy fast text processing on such strings such as Japanese or Chinese.

Re-exports

pub use mptrie::MpTrie;
pub use trie::Trie;

Modules

Definition of errors.

A minimal-prefix trie form that is memory-efficient for long strings.

A standard trie form that often provides the fastest queries.

Structs

Result of common prefix search.

Constants

Special terminator, which must not be contained in keys.

Traits

Basic statistics of trie.