about summary refs log tree commit diff
path: root/src/libstd/path.rs
diff options
context:
space:
mode:
authorKyle Huey <khuey@kylehuey.com>2019-04-19 21:13:37 -0700
committerKyle Huey <khuey@kylehuey.com>2019-04-19 21:52:43 -0700
commit3e86cf36b5114f201868bf459934fe346a76a2d4 (patch)
tree60a7de7db6b5733586c144a3dfe113c1fc70dfcd /src/libstd/path.rs
parent8aaae4294b16b8070a52b858364f440873bfc95c (diff)
downloadrust-3e86cf36b5114f201868bf459934fe346a76a2d4.tar.gz
rust-3e86cf36b5114f201868bf459934fe346a76a2d4.zip
Add implementations of last in terms of next_back on a bunch of DoubleEndedIterators.
r?Manishearth
Diffstat (limited to 'src/libstd/path.rs')
-rw-r--r--src/libstd/path.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/libstd/path.rs b/src/libstd/path.rs
index 1bbda9b5bcb..79ba37b2eb5 100644
--- a/src/libstd/path.rs
+++ b/src/libstd/path.rs
@@ -886,6 +886,11 @@ impl<'a> Iterator for Iter<'a> {
     fn next(&mut self) -> Option<&'a OsStr> {
         self.inner.next().map(Component::as_os_str)
     }
+
+    #[inline]
+    fn last(mut self) -> Option<&'a OsStr> {
+        self.next_back()
+    }
 }
 
 #[stable(feature = "rust1", since = "1.0.0")]
@@ -949,6 +954,11 @@ impl<'a> Iterator for Components<'a> {
         }
         None
     }
+
+    #[inline]
+    fn last(mut self) -> Option<Self::Item> {
+        self.next_back()
+    }
 }
 
 #[stable(feature = "rust1", since = "1.0.0")]