win-auto-utils 0.2.6

Universal Windows automation utilities with memory, window, input, and color operations
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Pattern Module
//!
//! Provides pattern parsing, anchor selection, and pattern representation.
//!
//! # Submodules
//! - **parser**: Parses hex+wildcard pattern strings into structured Pattern
//! - **anchor**: Intelligent anchor selection for heuristic searching

pub mod anchor;
mod parser;

pub use parser::Pattern;
// Note: find_rarest_byte_index is used internally by scanner, not exported publicly