clippy fixes

This commit is contained in:
2026-06-10 20:40:26 -07:00
parent a8106ad0b5
commit 6f42e7d2bb
+10
View File
@@ -174,6 +174,11 @@ impl TableauIter {
}
}
}
impl Default for TableauIter {
fn default() -> Self {
Self::new()
}
}
impl Iterator for TableauIter {
type Item = Tableau;
fn next(&mut self) -> Option<Self::Item> {
@@ -221,6 +226,11 @@ impl FoundationIter {
}
}
}
impl Default for FoundationIter {
fn default() -> Self {
Self::new()
}
}
impl Iterator for FoundationIter {
type Item = Foundation;
fn next(&mut self) -> Option<Self::Item> {