1
Fork 0

Add implementations of last in terms of next_back on a bunch of DoubleEndedIterators.

r?Manishearth
This commit is contained in:
Kyle Huey 2019-04-19 21:13:37 -07:00
parent 8aaae4294b
commit 3e86cf36b5
14 changed files with 159 additions and 0 deletions

View file

@ -740,6 +740,10 @@ impl Iterator for Args {
self.inner.next().map(|s| s.into_string().unwrap())
}
fn size_hint(&self) -> (usize, Option<usize>) { self.inner.size_hint() }
#[inline]
fn last(mut self) -> Option<String> {
self.next_back()
}
}
#[stable(feature = "env", since = "1.0.0")]
@ -775,6 +779,8 @@ impl Iterator for ArgsOs {
type Item = OsString;
fn next(&mut self) -> Option<OsString> { self.inner.next() }
fn size_hint(&self) -> (usize, Option<usize>) { self.inner.size_hint() }
#[inline]
fn last(mut self) -> Option<OsString> { self.next_back() }
}
#[stable(feature = "env", since = "1.0.0")]