Skip to content

Commit 214d09b

Browse files
committed
Remove min/max values from IntoValues Iterator implementation
1 parent 4762423 commit 214d09b

File tree

1 file changed

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

1 file changed

+0
-8
lines changed

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)