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
//! Common test utilities and proptest strategies for libdictenstein.
//!
//! This module provides reusable proptest strategies for generating test data
//! across different dictionary implementations, as well as macros for
//! generalized trait-based testing.

#[macro_use]
pub mod macros;
pub mod strategies;