DetectPureQR ported

This commit is contained in:
Henry Schimke
2023-03-20 11:09:06 -05:00
parent 75313c26f8
commit 3d75de7183
8 changed files with 168 additions and 86 deletions

View File

@@ -54,6 +54,12 @@ impl std::ops::IndexMut<usize> for PatternRow {
}
}
impl From<Vec<PatternType>> for PatternRow {
fn from(value: Vec<PatternType>) -> Self {
Self(value)
}
}
impl<'a> Iterator for PatternView<'_> {
type Item = PatternType;