matcher_rs 0.12.0

A high-performance matcher designed to solve LOGICAL and TEXT VARIATIONS problems in word matching, implemented in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Low-level text transformation engines.
//!
//! Provides the building blocks used by [`super::process_matcher::ProcessMatcher`]:
//! pre-compiled data tables ([`constants`]), single-character lookup engines
//! ([`single_char_matcher`]), multi-character substitution
//! ([`multi_char_matcher`]), and SIMD-accelerated character-skip utilities ([`simd_utils`]).
pub(crate) mod constants;
pub(crate) mod multi_char_matcher;
pub(crate) mod simd_utils;
pub(crate) mod single_char_matcher;