Skip to content

Commit 1cdce39

Browse files
committed
Remove min/max values from IntoValues Iterator implementation
1 parent 16a5217 commit 1cdce39

File tree

1 file changed

+0
-8
lines changed
  • library/alloc/src/collections/btree

1 file changed

+0
-8
lines changed

library/alloc/src/collections/btree/map.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1910,14 +1910,6 @@ impl<K, V> Iterator for IntoValues<K, V> {
19101910
fn last(mut self) -> Option<V> {
19111911
self.next_back()
19121912
}
1913-
1914-
fn min(mut self) -> Option<V> {
1915-
self.next()
1916-
}
1917-
1918-
fn max(mut self) -> Option<V> {
1919-
self.next_back()
1920-
}
19211913
}
19221914

19231915
#[unstable(feature = "map_into_keys_values", issue = "55214")]

0 commit comments

Comments
 (0)