nucleo-matcher 0.1.0

plug and play high performance fuzzy matcher
Documentation
use crate::matrix::{MatrixCell, ScoreCell};
use std::fmt::{Debug, Formatter, Result};

// 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)
//     }
// }

impl Debug for ScoreCell {
    fn fmt(&self, f: &mut Formatter<'_>) -> Result {
        write!(f, "({}, {})", self.score, self.matched)
    }
}

impl Debug for MatrixCell {
    fn fmt(&self, f: &mut Formatter<'_>) -> Result {
        write!(f, "({}, {})", (self.0 & 1) != 0, (self.0 & 2) != 0)
    }
}