use crate;
use ;
// impl<C: Char> MatcherData<'_, C> {
// pub fn rows(&self) -> impl Iterator<Item = MatrixRow> + ExactSizeIterator + Clone + Sized {
// let mut cells = &*self.cells;
// self.row_offs.iter().map(move |&off| {
// let len = self.haystack.len() - off as usize;
// let (row, tmp) = cells.split_at(len);
// cells = tmp;
// MatrixRow { off, cells: row }
// })
// }
// pub fn haystack(
// &self,
// ) -> impl Iterator<Item = HaystackChar<C>> + ExactSizeIterator + '_ + Clone {
// haystack(self.haystack, self.bonus, 0)
// }
// }