Pattern matching library
Allows you to search for a pattern within data via an iterator interface.
This library uses the core::simd abstraction and does not allocate.
Usage
use Pattern;
let data = ;
// Allows . and ? as wildcard.
// Any number of wildcard characters between spaces is considered a wildcard byte.
let pattern: Pattern = "01 02 00 ? 59 ff".parse.unwrap;
let mut iterator = pattern.matches;
for _found in iterator