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
|
|
@ -35,6 +35,8 @@ impl Iterator for Args {
|
|||
type Item = OsString;
|
||||
fn next(&mut self) -> Option<OsString> { self.iter.next() }
|
||||
fn size_hint(&self) -> (usize, Option<usize>) { self.iter.size_hint() }
|
||||
#[inline]
|
||||
fn last(mut self) -> Option<OsString> { self.next_back() }
|
||||
}
|
||||
|
||||
impl ExactSizeIterator for Args {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue