diff options
| author | Kyle Huey <khuey@kylehuey.com> | 2019-04-19 21:13:37 -0700 |
|---|---|---|
| committer | Kyle Huey <khuey@kylehuey.com> | 2019-04-19 21:52:43 -0700 |
| commit | 3e86cf36b5114f201868bf459934fe346a76a2d4 (patch) | |
| tree | 60a7de7db6b5733586c144a3dfe113c1fc70dfcd /src/liballoc/string.rs | |
| parent | 8aaae4294b16b8070a52b858364f440873bfc95c (diff) | |
| download | rust-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/liballoc/string.rs')
| -rw-r--r-- | src/liballoc/string.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/liballoc/string.rs b/src/liballoc/string.rs index a3e2098695f..f01610a7c3f 100644 --- a/src/liballoc/string.rs +++ b/src/liballoc/string.rs @@ -2367,6 +2367,10 @@ impl Iterator for Drain<'_> { fn size_hint(&self) -> (usize, Option<usize>) { self.iter.size_hint() } + #[inline] + fn last(mut self) -> Option<char> { + self.next_back() + } } #[stable(feature = "drain", since = "1.6.0")] |
