libdictenstein 0.1.0

High-performance dictionary data structures (trie, DAWG, double-array trie, suffix automaton, lock-free durable persistent ART) behind one trait API; pairs with liblevenshtein for fuzzy matching
1
2
3
4
5
6
7
8
9
//! TraversalContext for char trie — re-export from core.
//!
//! The original char-local copy was a near-duplicate of byte's copy
//! (similarity 0.98 per audit, only differences were doc-comment
//! examples and import paths). Phase-3 Move-2: collapsed both
//! variants' local copies into a single shared implementation at
//! `persistent_artrie_core::traversal_context`.

pub use crate::persistent_artrie_core::traversal_context::*;