1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Pattern matching operation specifications (DFA scan). use crate::OpSpec; /// Byte length helper for byte-level pattern pipelines. pub mod byte_len; /// DFA-based pattern scanning. pub mod dfa_scan; /// All pattern matching specs. #[inline] pub fn specs() -> Vec<OpSpec> { vec![dfa_scan::vyre_op(), byte_len::vyre_op()] }