about summary refs log tree commit diff
path: root/src/liballoc/collections/binary_heap.rs
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@palantir.com>2019-05-22 14:09:34 -0700
committerSteven Fackler <sfackler@palantir.com>2019-05-22 14:09:34 -0700
commit8a22bc3b30e81568db25cf57aa9e7629bfa449c7 (patch)
tree8af1ae41d65496ea74a1a45a43dac5dbd11a2d59 /src/liballoc/collections/binary_heap.rs
parent37ff5d388f8c004ca248adb635f1cc84d347eda0 (diff)
downloadrust-8a22bc3b30e81568db25cf57aa9e7629bfa449c7.tar.gz
rust-8a22bc3b30e81568db25cf57aa9e7629bfa449c7.zip
Revert "Add implementations of last in terms of next_back on a bunch of DoubleEndedIterators."
This reverts commit 3e86cf36b5114f201868bf459934fe346a76a2d4.
Diffstat (limited to 'src/liballoc/collections/binary_heap.rs')
-rw-r--r--src/liballoc/collections/binary_heap.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/liballoc/collections/binary_heap.rs b/src/liballoc/collections/binary_heap.rs
index c5a0b6e877b..c898f064fd0 100644
--- a/src/liballoc/collections/binary_heap.rs
+++ b/src/liballoc/collections/binary_heap.rs
@@ -1035,11 +1035,6 @@ impl<'a, T> Iterator for Iter<'a, T> {
     fn size_hint(&self) -> (usize, Option<usize>) {
         self.iter.size_hint()
     }
-
-    #[inline]
-    fn last(mut self) -> Option<&'a T> {
-        self.next_back()
-    }
 }
 
 #[stable(feature = "rust1", since = "1.0.0")]
@@ -1095,11 +1090,6 @@ impl<T> Iterator for IntoIter<T> {
     fn size_hint(&self) -> (usize, Option<usize>) {
         self.iter.size_hint()
     }
-
-    #[inline]
-    fn last(mut self) -> Option<T> {
-        self.next_back()
-    }
 }
 
 #[stable(feature = "rust1", since = "1.0.0")]
@@ -1146,11 +1136,6 @@ impl<T> Iterator for Drain<'_, T> {
     fn size_hint(&self) -> (usize, Option<usize>) {
         self.iter.size_hint()
     }
-
-    #[inline]
-    fn last(mut self) -> Option<T> {
-        self.next_back()
-    }
 }
 
 #[stable(feature = "drain", since = "1.6.0")]