Add implementations of last in terms of next_back on a bunch of DoubleEndedIterators.
r?Manishearth
This commit is contained in:
parent
8aaae4294b
commit
3e86cf36b5
14 changed files with 159 additions and 0 deletions
|
@ -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")]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue