clippy fixes

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