Skip to content

Commit 955df60

Browse files
committed
fmt
1 parent 7a8783e commit 955df60

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/utils/map.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ impl<
5555
}
5656

5757
pub fn iter(&self) -> impl Iterator<Item = (&K, &V)> {
58-
self.0.iter().filter_map(|x| x.as_ref().map(|(k, v)| (k, v)))
58+
self.0
59+
.iter()
60+
.filter_map(|x| x.as_ref().map(|(k, v)| (k, v)))
5961
}
6062

6163
/// Inserts and returns the value previously associated with the key if it existed.

0 commit comments

Comments
 (0)