diff options
| author | Steven Fackler <sfackler@palantir.com> | 2019-05-22 14:09:34 -0700 |
|---|---|---|
| committer | Steven Fackler <sfackler@palantir.com> | 2019-05-22 14:09:34 -0700 |
| commit | 8a22bc3b30e81568db25cf57aa9e7629bfa449c7 (patch) | |
| tree | 8af1ae41d65496ea74a1a45a43dac5dbd11a2d59 /src/libstd/path.rs | |
| parent | 37ff5d388f8c004ca248adb635f1cc84d347eda0 (diff) | |
| download | rust-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/libstd/path.rs')
| -rw-r--r-- | src/libstd/path.rs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/libstd/path.rs b/src/libstd/path.rs index 59f9e439add..126bc3754da 100644 --- a/src/libstd/path.rs +++ b/src/libstd/path.rs @@ -888,11 +888,6 @@ 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")] @@ -956,11 +951,6 @@ 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")] |
