liblevenshtein 0.9.1

Levenshtein/Universal Automata for approximate string matching using various dictionary backends
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Per-language phonetic rule aggregator functions, grouped by language family.
//!
//! Each `<lang>_rules()` function builds a `Vec<RewriteRuleChar>` for one
//! supported language by pulling from `crate::phonetic::rules::<lang>`. The
//! aggregators are independent (no shared state) and are dispatched from
//! [`super::dispatch::rules_for_language`].

pub mod celtic;
pub mod cjk;
pub mod germanic;
pub mod indic;
pub mod other;
pub mod romance;
pub mod semitic;
pub mod slavic;
pub mod southeast_asian;