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
//! Committed-LSN watermark — RELOCATED to `persistent_artrie_core` (DRY: shared by
//! every lock-free durable ARTrie variant, since it is key-encoding-agnostic).
//!
//! This module is a thin re-export so the existing
//! `super::committed_watermark::CommittedWatermark` references in the char variant
//! keep resolving. The implementation + tests now live at
//! [`crate::persistent_artrie_core::committed_watermark`].

pub(crate) use crate::persistent_artrie_core::committed_watermark::CommittedWatermark;