(input: &[T], pattern: &[T])
| 45 | } |
| 46 | |
| 47 | pub fn match_pattern<T: Eq>(input: &[T], pattern: &[T]) -> Vec<usize> { |
| 48 | match_with_z_array(input, pattern, 0, true) |
| 49 | } |
| 50 | |
| 51 | #[cfg(test)] |
| 52 | mod tests { |
nothing calls this directly
no test coverage detected