core/iter/traits/double_ended.rs
1use crate::array;
2use crate::marker::Destruct;
3use crate::num::NonZero;
4use crate::ops::{ControlFlow, Try};
5
6/// An iterator able to yield elements from both ends.
7///
8/// Something that implements `DoubleEndedIterator` has one extra capability
9/// over something that implements [`Iterator`]: the ability to also take
10/// `Item`s from the back, as well as the front.
11///
12/// It is important to note that both back and forth work on the same range,
13/// and do not cross: iteration is over when they meet in the middle.
14///
15/// In a similar fashion to the [`Iterator`] protocol, once a
16/// `DoubleEndedIterator` returns [`None`] from a [`next_back()`], calling it
17/// again may or may not ever return [`Some`] again. [`next()`] and
18/// [`next_back()`] are interchangeable for this purpose.
19///
20/// [`next_back()`]: DoubleEndedIterator::next_back
21/// [`next()`]: Iterator::next
22///
23/// # Examples
24///
25/// Basic usage:
26///
27/// ```
28/// let numbers = vec![1, 2, 3, 4, 5, 6];
29///
30/// let mut iter = numbers.iter();
31///
32/// assert_eq!(Some(&1), iter.next());
33/// assert_eq!(Some(&6), iter.next_back());
34/// assert_eq!(Some(&5), iter.next_back());
35/// assert_eq!(Some(&2), iter.next());
36/// assert_eq!(Some(&3), iter.next());
37/// assert_eq!(Some(&4), iter.next());
38/// assert_eq!(None, iter.next());
39/// assert_eq!(None, iter.next_back());
40/// ```
41#[stable(feature = "rust1", since = "1.0.0")]
42#[rustc_diagnostic_item = "DoubleEndedIterator"]
43#[rustc_const_unstable(feature = "const_iter", issue = "92476")]
44pub const trait DoubleEndedIterator: [const] Iterator {
45 /// Removes and returns an element from the end of the iterator.
46 ///
47 /// Returns `None` when there are no more elements.
48 ///
49 /// The [trait-level] docs contain more details.
50 ///
51 /// [trait-level]: DoubleEndedIterator
52 ///
53 /// # Examples
54 ///
55 /// Basic usage:
56 ///
57 /// ```
58 /// let numbers = vec![1, 2, 3, 4, 5, 6];
59 ///
60 /// let mut iter = numbers.iter();
61 ///
62 /// assert_eq!(Some(&1), iter.next());
63 /// assert_eq!(Some(&6), iter.next_back());
64 /// assert_eq!(Some(&5), iter.next_back());
65 /// assert_eq!(Some(&2), iter.next());
66 /// assert_eq!(Some(&3), iter.next());
67 /// assert_eq!(Some(&4), iter.next());
68 /// assert_eq!(None, iter.next());
69 /// assert_eq!(None, iter.next_back());
70 /// ```
71 ///
72 /// # Remarks
73 ///
74 /// The elements yielded by `DoubleEndedIterator`'s methods may differ from
75 /// the ones yielded by [`Iterator`]'s methods:
76 ///
77 /// ```
78 /// let vec = vec![(1, 'a'), (1, 'b'), (1, 'c'), (2, 'a'), (2, 'b')];
79 /// let uniq_by_fst_comp = || {
80 /// let mut seen = std::collections::HashSet::new();
81 /// vec.iter().copied().filter(move |x| seen.insert(x.0))
82 /// };
83 ///
84 /// assert_eq!(uniq_by_fst_comp().last(), Some((2, 'a')));
85 /// assert_eq!(uniq_by_fst_comp().next_back(), Some((2, 'b')));
86 ///
87 /// assert_eq!(
88 /// uniq_by_fst_comp().fold(vec![], |mut v, x| {v.push(x); v}),
89 /// vec![(1, 'a'), (2, 'a')]
90 /// );
91 /// assert_eq!(
92 /// uniq_by_fst_comp().rfold(vec![], |mut v, x| {v.push(x); v}),
93 /// vec![(2, 'b'), (1, 'c')]
94 /// );
95 /// ```
96 #[stable(feature = "rust1", since = "1.0.0")]
97 fn next_back(&mut self) -> Option<Self::Item>;
98
99 /// Advances from the back of the iterator and returns an array containing the next
100 /// `N` values in sequence.
101 ///
102 /// If there are not enough elements to fill the array then `Err` is returned
103 /// containing an iterator over the remaining elements.
104 ///
105 /// Note: This is not equivalent to doing `iter.rev().next_chunk()` as this method
106 /// takes elements from the back of the iterator and preserves the order that the
107 /// elements were seen in the original iterator.
108 ///
109 /// # Examples
110 ///
111 /// Basic usage:
112 ///
113 /// ```
114 /// #![feature(iter_next_chunk)]
115 ///
116 /// let mut iter = "lorem".chars();
117 ///
118 /// assert_eq!(iter.next_chunk_back().unwrap(), ['e', 'm']); // N is inferred as 2
119 /// assert_eq!(iter.next_chunk_back().unwrap(), ['l', 'o', 'r']); // N is inferred as 3
120 /// assert_eq!(iter.next_chunk_back::<4>().unwrap_err().as_slice(), &[]); // N is explicitly 4
121 /// ```
122 ///
123 /// Split a string and get the last three items in sequence.
124 ///
125 /// ```
126 /// #![feature(iter_next_chunk)]
127 ///
128 /// let quote = "not all those who wander are lost";
129 /// let [first, second, third] = quote.split_whitespace().next_chunk_back().unwrap();
130 /// assert_eq!(first, "wander");
131 /// assert_eq!(second, "are");
132 /// assert_eq!(third, "lost");
133 /// ```
134 #[inline]
135 #[unstable(feature = "iter_next_chunk", issue = "98326")]
136 #[rustc_non_const_trait_method]
137 fn next_chunk_back<const N: usize>(
138 &mut self,
139 ) -> Result<[Self::Item; N], array::IntoIter<Self::Item, N>>
140 where
141 Self: Sized,
142 {
143 crate::array::iter_next_chunk_back(self)
144 }
145
146 /// Advances the iterator from the back by `n` elements.
147 ///
148 /// `advance_back_by` is the reverse version of [`advance_by`]. This method will
149 /// eagerly skip `n` elements starting from the back by calling [`next_back`] up
150 /// to `n` times until [`None`] is encountered.
151 ///
152 /// `advance_back_by(n)` will return `Ok(())` if the iterator successfully advances by
153 /// `n` elements, or a `Err(NonZero<usize>)` with value `k` if [`None`] is encountered, where `k`
154 /// is remaining number of steps that could not be advanced because the iterator ran out.
155 /// If `self` is empty and `n` is non-zero, then this returns `Err(n)`.
156 /// Otherwise, `k` is always less than `n`.
157 ///
158 /// Calling `advance_back_by(0)` can do meaningful work, for example [`Flatten`] can advance its
159 /// outer iterator until it finds an inner iterator that is not empty, which then often
160 /// allows it to return a more accurate `size_hint()` than in its initial state.
161 ///
162 /// [`advance_by`]: Iterator::advance_by
163 /// [`Flatten`]: crate::iter::Flatten
164 /// [`next_back`]: DoubleEndedIterator::next_back
165 ///
166 /// # Examples
167 ///
168 /// Basic usage:
169 ///
170 /// ```
171 /// #![feature(iter_advance_by)]
172 ///
173 /// use std::num::NonZero;
174 ///
175 /// let a = [3, 4, 5, 6];
176 /// let mut iter = a.iter();
177 ///
178 /// assert_eq!(iter.advance_back_by(2), Ok(()));
179 /// assert_eq!(iter.next_back(), Some(&4));
180 /// assert_eq!(iter.advance_back_by(0), Ok(()));
181 /// assert_eq!(iter.advance_back_by(100), Err(NonZero::new(99).unwrap())); // only `&3` was skipped
182 /// ```
183 ///
184 /// [`Ok(())`]: Ok
185 /// [`Err(k)`]: Err
186 #[ferrocene::prevalidated]
187 #[inline]
188 #[unstable(feature = "iter_advance_by", issue = "77404")]
189 #[rustc_non_const_trait_method]
190 fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
191 for i in 0..n {
192 if self.next_back().is_none() {
193 // SAFETY: `i` is always less than `n`.
194 return Err(unsafe { NonZero::new_unchecked(n - i) });
195 }
196 }
197 Ok(())
198 }
199
200 /// Returns the `n`th element from the end of the iterator.
201 ///
202 /// This is essentially the reversed version of [`Iterator::nth()`].
203 /// Although like most indexing operations, the count starts from zero, so
204 /// `nth_back(0)` returns the first value from the end, `nth_back(1)` the
205 /// second, and so on.
206 ///
207 /// Note that all elements between the end and the returned element will be
208 /// consumed, including the returned element. This also means that calling
209 /// `nth_back(0)` multiple times on the same iterator will return different
210 /// elements.
211 ///
212 /// `nth_back()` will return [`None`] if `n` is greater than or equal to the
213 /// length of the iterator.
214 ///
215 /// # Examples
216 ///
217 /// Basic usage:
218 ///
219 /// ```
220 /// let a = [1, 2, 3];
221 /// assert_eq!(a.iter().nth_back(2), Some(&1));
222 /// ```
223 ///
224 /// Calling `nth_back()` multiple times doesn't rewind the iterator:
225 ///
226 /// ```
227 /// let a = [1, 2, 3];
228 ///
229 /// let mut iter = a.iter();
230 ///
231 /// assert_eq!(iter.nth_back(1), Some(&2));
232 /// assert_eq!(iter.nth_back(1), None);
233 /// ```
234 ///
235 /// Returning `None` if there are less than `n + 1` elements:
236 ///
237 /// ```
238 /// let a = [1, 2, 3];
239 /// assert_eq!(a.iter().nth_back(10), None);
240 /// ```
241 #[ferrocene::prevalidated]
242 #[inline]
243 #[stable(feature = "iter_nth_back", since = "1.37.0")]
244 #[rustc_non_const_trait_method]
245 fn nth_back(&mut self, n: usize) -> Option<Self::Item> {
246 if self.advance_back_by(n).is_err() {
247 return None;
248 }
249 self.next_back()
250 }
251
252 /// This is the reverse version of [`Iterator::try_fold()`]: it takes
253 /// elements starting from the back of the iterator.
254 ///
255 /// # Examples
256 ///
257 /// Basic usage:
258 ///
259 /// ```
260 /// let a = ["1", "2", "3"];
261 /// let sum = a.iter()
262 /// .map(|&s| s.parse::<i32>())
263 /// .try_rfold(0, |acc, x| x.and_then(|y| Ok(acc + y)));
264 /// assert_eq!(sum, Ok(6));
265 /// ```
266 ///
267 /// Short-circuiting:
268 ///
269 /// ```
270 /// let a = ["1", "rust", "3"];
271 /// let mut it = a.iter();
272 /// let sum = it
273 /// .by_ref()
274 /// .map(|&s| s.parse::<i32>())
275 /// .try_rfold(0, |acc, x| x.and_then(|y| Ok(acc + y)));
276 /// assert!(sum.is_err());
277 ///
278 /// // Because it short-circuited, the remaining elements are still
279 /// // available through the iterator.
280 /// assert_eq!(it.next_back(), Some(&"1"));
281 /// ```
282 #[inline]
283 #[stable(feature = "iterator_try_fold", since = "1.27.0")]
284 #[ferrocene::prevalidated]
285 fn try_rfold<B, F, R>(&mut self, init: B, mut f: F) -> R
286 where
287 Self: Sized,
288 F: [const] FnMut(B, Self::Item) -> R + [const] Destruct,
289 R: [const] Try<Output = B>,
290 {
291 let mut accum = init;
292 while let Some(x) = self.next_back() {
293 accum = f(accum, x)?;
294 }
295 try { accum }
296 }
297
298 /// An iterator method that reduces the iterator's elements to a single,
299 /// final value, starting from the back.
300 ///
301 /// This is the reverse version of [`Iterator::fold()`]: it takes elements
302 /// starting from the back of the iterator.
303 ///
304 /// `rfold()` takes two arguments: an initial value, and a closure with two
305 /// arguments: an 'accumulator', and an element. The closure returns the value that
306 /// the accumulator should have for the next iteration.
307 ///
308 /// The initial value is the value the accumulator will have on the first
309 /// call.
310 ///
311 /// After applying this closure to every element of the iterator, `rfold()`
312 /// returns the accumulator.
313 ///
314 /// This operation is sometimes called 'reduce' or 'inject'.
315 ///
316 /// Folding is useful whenever you have a collection of something, and want
317 /// to produce a single value from it.
318 ///
319 /// Note: `rfold()` combines elements in a *right-associative* fashion. For associative
320 /// operators like `+`, the order the elements are combined in is not important, but for non-associative
321 /// operators like `-` the order will affect the final result.
322 /// For a *left-associative* version of `rfold()`, see [`Iterator::fold()`].
323 ///
324 /// # Examples
325 ///
326 /// Basic usage:
327 ///
328 /// ```
329 /// let a = [1, 2, 3];
330 ///
331 /// // the sum of all of the elements of a
332 /// let sum = a.iter()
333 /// .rfold(0, |acc, &x| acc + x);
334 ///
335 /// assert_eq!(sum, 6);
336 /// ```
337 ///
338 /// This example demonstrates the right-associative nature of `rfold()`:
339 /// it builds a string, starting with an initial value
340 /// and continuing with each element from the back until the front:
341 ///
342 /// ```
343 /// let numbers = [1, 2, 3, 4, 5];
344 ///
345 /// let zero = "0".to_string();
346 ///
347 /// let result = numbers.iter().rfold(zero, |acc, &x| {
348 /// format!("({x} + {acc})")
349 /// });
350 ///
351 /// assert_eq!(result, "(1 + (2 + (3 + (4 + (5 + 0)))))");
352 /// ```
353 #[doc(alias = "foldr")]
354 #[inline]
355 #[stable(feature = "iter_rfold", since = "1.27.0")]
356 #[ferrocene::prevalidated]
357 fn rfold<B, F>(mut self, init: B, mut f: F) -> B
358 where
359 Self: Sized + [const] Destruct,
360 F: [const] FnMut(B, Self::Item) -> B + [const] Destruct,
361 {
362 let mut accum = init;
363 while let Some(x) = self.next_back() {
364 accum = f(accum, x);
365 }
366 accum
367 }
368
369 /// Searches for an element of an iterator from the back that satisfies a predicate.
370 ///
371 /// `rfind()` takes a closure that returns `true` or `false`. It applies
372 /// this closure to each element of the iterator, starting at the end, and if any
373 /// of them return `true`, then `rfind()` returns [`Some(element)`]. If they all return
374 /// `false`, it returns [`None`].
375 ///
376 /// `rfind()` is short-circuiting; in other words, it will stop processing
377 /// as soon as the closure returns `true`.
378 ///
379 /// Because `rfind()` takes a reference, and many iterators iterate over
380 /// references, this leads to a possibly confusing situation where the
381 /// argument is a double reference. You can see this effect in the
382 /// examples below, with `&&x`.
383 ///
384 /// [`Some(element)`]: Some
385 ///
386 /// # Examples
387 ///
388 /// Basic usage:
389 ///
390 /// ```
391 /// let a = [1, 2, 3];
392 ///
393 /// assert_eq!(a.into_iter().rfind(|&x| x == 2), Some(2));
394 /// assert_eq!(a.into_iter().rfind(|&x| x == 5), None);
395 /// ```
396 ///
397 /// Iterating over references:
398 ///
399 /// ```
400 /// let a = [1, 2, 3];
401 ///
402 /// // `iter()` yields references i.e. `&i32` and `rfind()` takes a
403 /// // reference to each element.
404 /// assert_eq!(a.iter().rfind(|&&x| x == 2), Some(&2));
405 /// assert_eq!(a.iter().rfind(|&&x| x == 5), None);
406 /// ```
407 ///
408 /// Stopping at the first `true`:
409 ///
410 /// ```
411 /// let a = [1, 2, 3];
412 ///
413 /// let mut iter = a.iter();
414 ///
415 /// assert_eq!(iter.rfind(|&&x| x == 2), Some(&2));
416 ///
417 /// // we can still use `iter`, as there are more elements.
418 /// assert_eq!(iter.next_back(), Some(&1));
419 /// ```
420 #[ferrocene::prevalidated]
421 #[inline]
422 #[stable(feature = "iter_rfind", since = "1.27.0")]
423 #[rustc_non_const_trait_method]
424 fn rfind<P>(&mut self, predicate: P) -> Option<Self::Item>
425 where
426 Self: Sized,
427 P: FnMut(&Self::Item) -> bool,
428 {
429 #[inline]
430 #[ferrocene::prevalidated]
431 fn check<T>(mut predicate: impl FnMut(&T) -> bool) -> impl FnMut((), T) -> ControlFlow<T> {
432 move |(), x| {
433 if predicate(&x) { ControlFlow::Break(x) } else { ControlFlow::Continue(()) }
434 }
435 }
436
437 self.try_rfold((), check(predicate)).break_value()
438 }
439}
440
441#[stable(feature = "rust1", since = "1.0.0")]
442impl<'a, I: DoubleEndedIterator + ?Sized> DoubleEndedIterator for &'a mut I {
443 fn next_back(&mut self) -> Option<I::Item> {
444 (**self).next_back()
445 }
446 fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero<usize>> {
447 (**self).advance_back_by(n)
448 }
449 fn nth_back(&mut self, n: usize) -> Option<I::Item> {
450 (**self).nth_back(n)
451 }
452 fn rfold<B, F>(self, init: B, f: F) -> B
453 where
454 F: FnMut(B, Self::Item) -> B,
455 {
456 self.spec_rfold(init, f)
457 }
458 fn try_rfold<B, F, R>(&mut self, init: B, f: F) -> R
459 where
460 F: FnMut(B, Self::Item) -> R,
461 R: Try<Output = B>,
462 {
463 self.spec_try_rfold(init, f)
464 }
465}
466
467/// Helper trait to specialize `rfold` and `rtry_fold` for `&mut I where I: Sized`
468trait DoubleEndedIteratorRefSpec: DoubleEndedIterator {
469 fn spec_rfold<B, F>(self, init: B, f: F) -> B
470 where
471 F: FnMut(B, Self::Item) -> B;
472
473 fn spec_try_rfold<B, F, R>(&mut self, init: B, f: F) -> R
474 where
475 F: FnMut(B, Self::Item) -> R,
476 R: Try<Output = B>;
477}
478
479impl<I: DoubleEndedIterator + ?Sized> DoubleEndedIteratorRefSpec for &mut I {
480 default fn spec_rfold<B, F>(self, init: B, mut f: F) -> B
481 where
482 F: FnMut(B, Self::Item) -> B,
483 {
484 let mut accum = init;
485 while let Some(x) = self.next_back() {
486 accum = f(accum, x);
487 }
488 accum
489 }
490
491 default fn spec_try_rfold<B, F, R>(&mut self, init: B, mut f: F) -> R
492 where
493 F: FnMut(B, Self::Item) -> R,
494 R: Try<Output = B>,
495 {
496 let mut accum = init;
497 while let Some(x) = self.next_back() {
498 accum = f(accum, x)?;
499 }
500 try { accum }
501 }
502}
503
504impl<I: DoubleEndedIterator> DoubleEndedIteratorRefSpec for &mut I {
505 impl_fold_via_try_fold! { spec_rfold -> spec_try_rfold }
506
507 #[ferrocene::prevalidated]
508 fn spec_try_rfold<B, F, R>(&mut self, init: B, f: F) -> R
509 where
510 F: FnMut(B, Self::Item) -> R,
511 R: Try<Output = B>,
512 {
513 (**self).try_rfold(init, f)
514 }
515}