//! Matcher stage — decides whether a given line is a hit.
pub use RegexMatcher;
pub use LineMatcher;
pub use PositionMatcher;
use crate::;
/// Classifies each line as hit or miss.
///
/// Implementations may be stateful (e.g., a position matcher that advances
/// through a sorted list of targets).
/// A matcher that hits every line.
;