]> git.lizzy.rs Git - rust.git/blob - src/libcore/iter/iterator.rs
Fix confusing doc for `scan`
[rust.git] / src / libcore / iter / iterator.rs
1 // Copyright 2013-2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use cmp::Ordering;
12 use ops::Try;
13
14 use super::{AlwaysOk, LoopState};
15 use super::{Chain, Cycle, Cloned, Enumerate, Filter, FilterMap, Fuse};
16 use super::{Flatten, FlatMap, flatten_compat};
17 use super::{Inspect, Map, Peekable, Scan, Skip, SkipWhile, StepBy, Take, TakeWhile, Rev};
18 use super::{Zip, Sum, Product};
19 use super::{ChainState, FromIterator, ZipImpl};
20
21 fn _assert_is_object_safe(_: &Iterator<Item=()>) {}
22
23 /// An interface for dealing with iterators.
24 ///
25 /// This is the main iterator trait. For more about the concept of iterators
26 /// generally, please see the [module-level documentation]. In particular, you
27 /// may want to know how to [implement `Iterator`][impl].
28 ///
29 /// [module-level documentation]: index.html
30 /// [impl]: index.html#implementing-iterator
31 #[stable(feature = "rust1", since = "1.0.0")]
32 #[rustc_on_unimplemented(
33     on(
34         _Self="&str",
35         label="`{Self}` is not an iterator; try calling `.chars()` or `.bytes()`"
36     ),
37     label="`{Self}` is not an iterator; maybe try calling `.iter()` or a similar method"
38 )]
39 #[doc(spotlight)]
40 pub trait Iterator {
41     /// The type of the elements being iterated over.
42     #[stable(feature = "rust1", since = "1.0.0")]
43     type Item;
44
45     /// Advances the iterator and returns the next value.
46     ///
47     /// Returns [`None`] when iteration is finished. Individual iterator
48     /// implementations may choose to resume iteration, and so calling `next()`
49     /// again may or may not eventually start returning [`Some(Item)`] again at some
50     /// point.
51     ///
52     /// [`None`]: ../../std/option/enum.Option.html#variant.None
53     /// [`Some(Item)`]: ../../std/option/enum.Option.html#variant.Some
54     ///
55     /// # Examples
56     ///
57     /// Basic usage:
58     ///
59     /// ```
60     /// let a = [1, 2, 3];
61     ///
62     /// let mut iter = a.iter();
63     ///
64     /// // A call to next() returns the next value...
65     /// assert_eq!(Some(&1), iter.next());
66     /// assert_eq!(Some(&2), iter.next());
67     /// assert_eq!(Some(&3), iter.next());
68     ///
69     /// // ... and then None once it's over.
70     /// assert_eq!(None, iter.next());
71     ///
72     /// // More calls may or may not return None. Here, they always will.
73     /// assert_eq!(None, iter.next());
74     /// assert_eq!(None, iter.next());
75     /// ```
76     #[stable(feature = "rust1", since = "1.0.0")]
77     fn next(&mut self) -> Option<Self::Item>;
78
79     /// Returns the bounds on the remaining length of the iterator.
80     ///
81     /// Specifically, `size_hint()` returns a tuple where the first element
82     /// is the lower bound, and the second element is the upper bound.
83     ///
84     /// The second half of the tuple that is returned is an [`Option`]`<`[`usize`]`>`.
85     /// A [`None`] here means that either there is no known upper bound, or the
86     /// upper bound is larger than [`usize`].
87     ///
88     /// # Implementation notes
89     ///
90     /// It is not enforced that an iterator implementation yields the declared
91     /// number of elements. A buggy iterator may yield less than the lower bound
92     /// or more than the upper bound of elements.
93     ///
94     /// `size_hint()` is primarily intended to be used for optimizations such as
95     /// reserving space for the elements of the iterator, but must not be
96     /// trusted to e.g. omit bounds checks in unsafe code. An incorrect
97     /// implementation of `size_hint()` should not lead to memory safety
98     /// violations.
99     ///
100     /// That said, the implementation should provide a correct estimation,
101     /// because otherwise it would be a violation of the trait's protocol.
102     ///
103     /// The default implementation returns `(0, None)` which is correct for any
104     /// iterator.
105     ///
106     /// [`usize`]: ../../std/primitive.usize.html
107     /// [`Option`]: ../../std/option/enum.Option.html
108     /// [`None`]: ../../std/option/enum.Option.html#variant.None
109     ///
110     /// # Examples
111     ///
112     /// Basic usage:
113     ///
114     /// ```
115     /// let a = [1, 2, 3];
116     /// let iter = a.iter();
117     ///
118     /// assert_eq!((3, Some(3)), iter.size_hint());
119     /// ```
120     ///
121     /// A more complex example:
122     ///
123     /// ```
124     /// // The even numbers from zero to ten.
125     /// let iter = (0..10).filter(|x| x % 2 == 0);
126     ///
127     /// // We might iterate from zero to ten times. Knowing that it's five
128     /// // exactly wouldn't be possible without executing filter().
129     /// assert_eq!((0, Some(10)), iter.size_hint());
130     ///
131     /// // Let's add five more numbers with chain()
132     /// let iter = (0..10).filter(|x| x % 2 == 0).chain(15..20);
133     ///
134     /// // now both bounds are increased by five
135     /// assert_eq!((5, Some(15)), iter.size_hint());
136     /// ```
137     ///
138     /// Returning `None` for an upper bound:
139     ///
140     /// ```
141     /// // an infinite iterator has no upper bound
142     /// // and the maximum possible lower bound
143     /// let iter = 0..;
144     ///
145     /// assert_eq!((usize::max_value(), None), iter.size_hint());
146     /// ```
147     #[inline]
148     #[stable(feature = "rust1", since = "1.0.0")]
149     fn size_hint(&self) -> (usize, Option<usize>) { (0, None) }
150
151     /// Consumes the iterator, counting the number of iterations and returning it.
152     ///
153     /// This method will evaluate the iterator until its [`next`] returns
154     /// [`None`]. Once [`None`] is encountered, `count()` returns the number of
155     /// times it called [`next`].
156     ///
157     /// [`next`]: #tymethod.next
158     /// [`None`]: ../../std/option/enum.Option.html#variant.None
159     ///
160     /// # Overflow Behavior
161     ///
162     /// The method does no guarding against overflows, so counting elements of
163     /// an iterator with more than [`usize::MAX`] elements either produces the
164     /// wrong result or panics. If debug assertions are enabled, a panic is
165     /// guaranteed.
166     ///
167     /// # Panics
168     ///
169     /// This function might panic if the iterator has more than [`usize::MAX`]
170     /// elements.
171     ///
172     /// [`usize::MAX`]: ../../std/usize/constant.MAX.html
173     ///
174     /// # Examples
175     ///
176     /// Basic usage:
177     ///
178     /// ```
179     /// let a = [1, 2, 3];
180     /// assert_eq!(a.iter().count(), 3);
181     ///
182     /// let a = [1, 2, 3, 4, 5];
183     /// assert_eq!(a.iter().count(), 5);
184     /// ```
185     #[inline]
186     #[rustc_inherit_overflow_checks]
187     #[stable(feature = "rust1", since = "1.0.0")]
188     fn count(self) -> usize where Self: Sized {
189         // Might overflow.
190         self.fold(0, |cnt, _| cnt + 1)
191     }
192
193     /// Consumes the iterator, returning the last element.
194     ///
195     /// This method will evaluate the iterator until it returns [`None`]. While
196     /// doing so, it keeps track of the current element. After [`None`] is
197     /// returned, `last()` will then return the last element it saw.
198     ///
199     /// [`None`]: ../../std/option/enum.Option.html#variant.None
200     ///
201     /// # Examples
202     ///
203     /// Basic usage:
204     ///
205     /// ```
206     /// let a = [1, 2, 3];
207     /// assert_eq!(a.iter().last(), Some(&3));
208     ///
209     /// let a = [1, 2, 3, 4, 5];
210     /// assert_eq!(a.iter().last(), Some(&5));
211     /// ```
212     #[inline]
213     #[stable(feature = "rust1", since = "1.0.0")]
214     fn last(self) -> Option<Self::Item> where Self: Sized {
215         let mut last = None;
216         for x in self { last = Some(x); }
217         last
218     }
219
220     /// Returns the `n`th element of the iterator.
221     ///
222     /// Like most indexing operations, the count starts from zero, so `nth(0)`
223     /// returns the first value, `nth(1)` the second, and so on.
224     ///
225     /// Note that all preceding elements, as well as the returned element, will be
226     /// consumed from the iterator. That means that the preceding elements will be
227     /// discarded, and also that calling `nth(0)` multiple times on the same iterator
228     /// will return different elements.
229     ///
230     /// `nth()` will return [`None`] if `n` is greater than or equal to the length of the
231     /// iterator.
232     ///
233     /// [`None`]: ../../std/option/enum.Option.html#variant.None
234     ///
235     /// # Examples
236     ///
237     /// Basic usage:
238     ///
239     /// ```
240     /// let a = [1, 2, 3];
241     /// assert_eq!(a.iter().nth(1), Some(&2));
242     /// ```
243     ///
244     /// Calling `nth()` multiple times doesn't rewind the iterator:
245     ///
246     /// ```
247     /// let a = [1, 2, 3];
248     ///
249     /// let mut iter = a.iter();
250     ///
251     /// assert_eq!(iter.nth(1), Some(&2));
252     /// assert_eq!(iter.nth(1), None);
253     /// ```
254     ///
255     /// Returning `None` if there are less than `n + 1` elements:
256     ///
257     /// ```
258     /// let a = [1, 2, 3];
259     /// assert_eq!(a.iter().nth(10), None);
260     /// ```
261     #[inline]
262     #[stable(feature = "rust1", since = "1.0.0")]
263     fn nth(&mut self, mut n: usize) -> Option<Self::Item> {
264         for x in self {
265             if n == 0 { return Some(x) }
266             n -= 1;
267         }
268         None
269     }
270
271     /// Creates an iterator starting at the same point, but stepping by
272     /// the given amount at each iteration.
273     ///
274     /// Note that it will always return the first element of the iterator,
275     /// regardless of the step given.
276     ///
277     /// # Panics
278     ///
279     /// The method will panic if the given step is `0`.
280     ///
281     /// # Examples
282     ///
283     /// Basic usage:
284     ///
285     /// ```
286     /// #![feature(iterator_step_by)]
287     /// let a = [0, 1, 2, 3, 4, 5];
288     /// let mut iter = a.into_iter().step_by(2);
289     ///
290     /// assert_eq!(iter.next(), Some(&0));
291     /// assert_eq!(iter.next(), Some(&2));
292     /// assert_eq!(iter.next(), Some(&4));
293     /// assert_eq!(iter.next(), None);
294     /// ```
295     #[inline]
296     #[unstable(feature = "iterator_step_by",
297                reason = "unstable replacement of Range::step_by",
298                issue = "27741")]
299     fn step_by(self, step: usize) -> StepBy<Self> where Self: Sized {
300         assert!(step != 0);
301         StepBy{iter: self, step: step - 1, first_take: true}
302     }
303
304     /// Takes two iterators and creates a new iterator over both in sequence.
305     ///
306     /// `chain()` will return a new iterator which will first iterate over
307     /// values from the first iterator and then over values from the second
308     /// iterator.
309     ///
310     /// In other words, it links two iterators together, in a chain. ðŸ”—
311     ///
312     /// # Examples
313     ///
314     /// Basic usage:
315     ///
316     /// ```
317     /// let a1 = [1, 2, 3];
318     /// let a2 = [4, 5, 6];
319     ///
320     /// let mut iter = a1.iter().chain(a2.iter());
321     ///
322     /// assert_eq!(iter.next(), Some(&1));
323     /// assert_eq!(iter.next(), Some(&2));
324     /// assert_eq!(iter.next(), Some(&3));
325     /// assert_eq!(iter.next(), Some(&4));
326     /// assert_eq!(iter.next(), Some(&5));
327     /// assert_eq!(iter.next(), Some(&6));
328     /// assert_eq!(iter.next(), None);
329     /// ```
330     ///
331     /// Since the argument to `chain()` uses [`IntoIterator`], we can pass
332     /// anything that can be converted into an [`Iterator`], not just an
333     /// [`Iterator`] itself. For example, slices (`&[T]`) implement
334     /// [`IntoIterator`], and so can be passed to `chain()` directly:
335     ///
336     /// [`IntoIterator`]: trait.IntoIterator.html
337     /// [`Iterator`]: trait.Iterator.html
338     ///
339     /// ```
340     /// let s1 = &[1, 2, 3];
341     /// let s2 = &[4, 5, 6];
342     ///
343     /// let mut iter = s1.iter().chain(s2);
344     ///
345     /// assert_eq!(iter.next(), Some(&1));
346     /// assert_eq!(iter.next(), Some(&2));
347     /// assert_eq!(iter.next(), Some(&3));
348     /// assert_eq!(iter.next(), Some(&4));
349     /// assert_eq!(iter.next(), Some(&5));
350     /// assert_eq!(iter.next(), Some(&6));
351     /// assert_eq!(iter.next(), None);
352     /// ```
353     #[inline]
354     #[stable(feature = "rust1", since = "1.0.0")]
355     fn chain<U>(self, other: U) -> Chain<Self, U::IntoIter> where
356         Self: Sized, U: IntoIterator<Item=Self::Item>,
357     {
358         Chain{a: self, b: other.into_iter(), state: ChainState::Both}
359     }
360
361     /// 'Zips up' two iterators into a single iterator of pairs.
362     ///
363     /// `zip()` returns a new iterator that will iterate over two other
364     /// iterators, returning a tuple where the first element comes from the
365     /// first iterator, and the second element comes from the second iterator.
366     ///
367     /// In other words, it zips two iterators together, into a single one.
368     ///
369     /// When either iterator returns [`None`], all further calls to [`next`]
370     /// will return [`None`].
371     ///
372     /// # Examples
373     ///
374     /// Basic usage:
375     ///
376     /// ```
377     /// let a1 = [1, 2, 3];
378     /// let a2 = [4, 5, 6];
379     ///
380     /// let mut iter = a1.iter().zip(a2.iter());
381     ///
382     /// assert_eq!(iter.next(), Some((&1, &4)));
383     /// assert_eq!(iter.next(), Some((&2, &5)));
384     /// assert_eq!(iter.next(), Some((&3, &6)));
385     /// assert_eq!(iter.next(), None);
386     /// ```
387     ///
388     /// Since the argument to `zip()` uses [`IntoIterator`], we can pass
389     /// anything that can be converted into an [`Iterator`], not just an
390     /// [`Iterator`] itself. For example, slices (`&[T]`) implement
391     /// [`IntoIterator`], and so can be passed to `zip()` directly:
392     ///
393     /// [`IntoIterator`]: trait.IntoIterator.html
394     /// [`Iterator`]: trait.Iterator.html
395     ///
396     /// ```
397     /// let s1 = &[1, 2, 3];
398     /// let s2 = &[4, 5, 6];
399     ///
400     /// let mut iter = s1.iter().zip(s2);
401     ///
402     /// assert_eq!(iter.next(), Some((&1, &4)));
403     /// assert_eq!(iter.next(), Some((&2, &5)));
404     /// assert_eq!(iter.next(), Some((&3, &6)));
405     /// assert_eq!(iter.next(), None);
406     /// ```
407     ///
408     /// `zip()` is often used to zip an infinite iterator to a finite one.
409     /// This works because the finite iterator will eventually return [`None`],
410     /// ending the zipper. Zipping with `(0..)` can look a lot like [`enumerate`]:
411     ///
412     /// ```
413     /// let enumerate: Vec<_> = "foo".chars().enumerate().collect();
414     ///
415     /// let zipper: Vec<_> = (0..).zip("foo".chars()).collect();
416     ///
417     /// assert_eq!((0, 'f'), enumerate[0]);
418     /// assert_eq!((0, 'f'), zipper[0]);
419     ///
420     /// assert_eq!((1, 'o'), enumerate[1]);
421     /// assert_eq!((1, 'o'), zipper[1]);
422     ///
423     /// assert_eq!((2, 'o'), enumerate[2]);
424     /// assert_eq!((2, 'o'), zipper[2]);
425     /// ```
426     ///
427     /// [`enumerate`]: trait.Iterator.html#method.enumerate
428     /// [`next`]: ../../std/iter/trait.Iterator.html#tymethod.next
429     /// [`None`]: ../../std/option/enum.Option.html#variant.None
430     #[inline]
431     #[stable(feature = "rust1", since = "1.0.0")]
432     fn zip<U>(self, other: U) -> Zip<Self, U::IntoIter> where
433         Self: Sized, U: IntoIterator
434     {
435         Zip::new(self, other.into_iter())
436     }
437
438     /// Takes a closure and creates an iterator which calls that closure on each
439     /// element.
440     ///
441     /// `map()` transforms one iterator into another, by means of its argument:
442     /// something that implements `FnMut`. It produces a new iterator which
443     /// calls this closure on each element of the original iterator.
444     ///
445     /// If you are good at thinking in types, you can think of `map()` like this:
446     /// If you have an iterator that gives you elements of some type `A`, and
447     /// you want an iterator of some other type `B`, you can use `map()`,
448     /// passing a closure that takes an `A` and returns a `B`.
449     ///
450     /// `map()` is conceptually similar to a [`for`] loop. However, as `map()` is
451     /// lazy, it is best used when you're already working with other iterators.
452     /// If you're doing some sort of looping for a side effect, it's considered
453     /// more idiomatic to use [`for`] than `map()`.
454     ///
455     /// [`for`]: ../../book/first-edition/loops.html#for
456     ///
457     /// # Examples
458     ///
459     /// Basic usage:
460     ///
461     /// ```
462     /// let a = [1, 2, 3];
463     ///
464     /// let mut iter = a.into_iter().map(|x| 2 * x);
465     ///
466     /// assert_eq!(iter.next(), Some(2));
467     /// assert_eq!(iter.next(), Some(4));
468     /// assert_eq!(iter.next(), Some(6));
469     /// assert_eq!(iter.next(), None);
470     /// ```
471     ///
472     /// If you're doing some sort of side effect, prefer [`for`] to `map()`:
473     ///
474     /// ```
475     /// # #![allow(unused_must_use)]
476     /// // don't do this:
477     /// (0..5).map(|x| println!("{}", x));
478     ///
479     /// // it won't even execute, as it is lazy. Rust will warn you about this.
480     ///
481     /// // Instead, use for:
482     /// for x in 0..5 {
483     ///     println!("{}", x);
484     /// }
485     /// ```
486     #[inline]
487     #[stable(feature = "rust1", since = "1.0.0")]
488     fn map<B, F>(self, f: F) -> Map<Self, F> where
489         Self: Sized, F: FnMut(Self::Item) -> B,
490     {
491         Map{iter: self, f: f}
492     }
493
494     /// Calls a closure on each element of an iterator.
495     ///
496     /// This is equivalent to using a [`for`] loop on the iterator, although
497     /// `break` and `continue` are not possible from a closure.  It's generally
498     /// more idiomatic to use a `for` loop, but `for_each` may be more legible
499     /// when processing items at the end of longer iterator chains.  In some
500     /// cases `for_each` may also be faster than a loop, because it will use
501     /// internal iteration on adaptors like `Chain`.
502     ///
503     /// [`for`]: ../../book/first-edition/loops.html#for
504     ///
505     /// # Examples
506     ///
507     /// Basic usage:
508     ///
509     /// ```
510     /// use std::sync::mpsc::channel;
511     ///
512     /// let (tx, rx) = channel();
513     /// (0..5).map(|x| x * 2 + 1)
514     ///       .for_each(move |x| tx.send(x).unwrap());
515     ///
516     /// let v: Vec<_> =  rx.iter().collect();
517     /// assert_eq!(v, vec![1, 3, 5, 7, 9]);
518     /// ```
519     ///
520     /// For such a small example, a `for` loop may be cleaner, but `for_each`
521     /// might be preferable to keep a functional style with longer iterators:
522     ///
523     /// ```
524     /// (0..5).flat_map(|x| x * 100 .. x * 110)
525     ///       .enumerate()
526     ///       .filter(|&(i, x)| (i + x) % 3 == 0)
527     ///       .for_each(|(i, x)| println!("{}:{}", i, x));
528     /// ```
529     #[inline]
530     #[stable(feature = "iterator_for_each", since = "1.21.0")]
531     fn for_each<F>(self, mut f: F) where
532         Self: Sized, F: FnMut(Self::Item),
533     {
534         self.fold((), move |(), item| f(item));
535     }
536
537     /// Creates an iterator which uses a closure to determine if an element
538     /// should be yielded.
539     ///
540     /// The closure must return `true` or `false`. `filter()` creates an
541     /// iterator which calls this closure on each element. If the closure
542     /// returns `true`, then the element is returned. If the closure returns
543     /// `false`, it will try again, and call the closure on the next element,
544     /// seeing if it passes the test.
545     ///
546     /// # Examples
547     ///
548     /// Basic usage:
549     ///
550     /// ```
551     /// let a = [0i32, 1, 2];
552     ///
553     /// let mut iter = a.into_iter().filter(|x| x.is_positive());
554     ///
555     /// assert_eq!(iter.next(), Some(&1));
556     /// assert_eq!(iter.next(), Some(&2));
557     /// assert_eq!(iter.next(), None);
558     /// ```
559     ///
560     /// Because the closure passed to `filter()` takes a reference, and many
561     /// iterators iterate over references, this leads to a possibly confusing
562     /// situation, where the type of the closure is a double reference:
563     ///
564     /// ```
565     /// let a = [0, 1, 2];
566     ///
567     /// let mut iter = a.into_iter().filter(|x| **x > 1); // need two *s!
568     ///
569     /// assert_eq!(iter.next(), Some(&2));
570     /// assert_eq!(iter.next(), None);
571     /// ```
572     ///
573     /// It's common to instead use destructuring on the argument to strip away
574     /// one:
575     ///
576     /// ```
577     /// let a = [0, 1, 2];
578     ///
579     /// let mut iter = a.into_iter().filter(|&x| *x > 1); // both & and *
580     ///
581     /// assert_eq!(iter.next(), Some(&2));
582     /// assert_eq!(iter.next(), None);
583     /// ```
584     ///
585     /// or both:
586     ///
587     /// ```
588     /// let a = [0, 1, 2];
589     ///
590     /// let mut iter = a.into_iter().filter(|&&x| x > 1); // two &s
591     ///
592     /// assert_eq!(iter.next(), Some(&2));
593     /// assert_eq!(iter.next(), None);
594     /// ```
595     ///
596     /// of these layers.
597     #[inline]
598     #[stable(feature = "rust1", since = "1.0.0")]
599     fn filter<P>(self, predicate: P) -> Filter<Self, P> where
600         Self: Sized, P: FnMut(&Self::Item) -> bool,
601     {
602         Filter{iter: self, predicate: predicate}
603     }
604
605     /// Creates an iterator that both filters and maps.
606     ///
607     /// The closure must return an [`Option<T>`]. `filter_map` creates an
608     /// iterator which calls this closure on each element. If the closure
609     /// returns [`Some(element)`][`Some`], then that element is returned. If the
610     /// closure returns [`None`], it will try again, and call the closure on the
611     /// next element, seeing if it will return [`Some`].
612     ///
613     /// Why `filter_map` and not just [`filter`] and [`map`]? The key is in this
614     /// part:
615     ///
616     /// [`filter`]: #method.filter
617     /// [`map`]: #method.map
618     ///
619     /// > If the closure returns [`Some(element)`][`Some`], then that element is returned.
620     ///
621     /// In other words, it removes the [`Option<T>`] layer automatically. If your
622     /// mapping is already returning an [`Option<T>`] and you want to skip over
623     /// [`None`]s, then `filter_map` is much, much nicer to use.
624     ///
625     /// # Examples
626     ///
627     /// Basic usage:
628     ///
629     /// ```
630     /// let a = ["1", "lol", "3", "NaN", "5"];
631     ///
632     /// let mut iter = a.iter().filter_map(|s| s.parse().ok());
633     ///
634     /// assert_eq!(iter.next(), Some(1));
635     /// assert_eq!(iter.next(), Some(3));
636     /// assert_eq!(iter.next(), Some(5));
637     /// assert_eq!(iter.next(), None);
638     /// ```
639     ///
640     /// Here's the same example, but with [`filter`] and [`map`]:
641     ///
642     /// ```
643     /// let a = ["1", "lol", "3", "NaN", "5"];
644     /// let mut iter = a.iter().map(|s| s.parse()).filter(|s| s.is_ok()).map(|s| s.unwrap());
645     /// assert_eq!(iter.next(), Some(1));
646     /// assert_eq!(iter.next(), Some(3));
647     /// assert_eq!(iter.next(), Some(5));
648     /// assert_eq!(iter.next(), None);
649     /// ```
650     ///
651     /// [`Option<T>`]: ../../std/option/enum.Option.html
652     /// [`Some`]: ../../std/option/enum.Option.html#variant.Some
653     /// [`None`]: ../../std/option/enum.Option.html#variant.None
654     #[inline]
655     #[stable(feature = "rust1", since = "1.0.0")]
656     fn filter_map<B, F>(self, f: F) -> FilterMap<Self, F> where
657         Self: Sized, F: FnMut(Self::Item) -> Option<B>,
658     {
659         FilterMap { iter: self, f: f }
660     }
661
662     /// Creates an iterator which gives the current iteration count as well as
663     /// the next value.
664     ///
665     /// The iterator returned yields pairs `(i, val)`, where `i` is the
666     /// current index of iteration and `val` is the value returned by the
667     /// iterator.
668     ///
669     /// `enumerate()` keeps its count as a [`usize`]. If you want to count by a
670     /// different sized integer, the [`zip`] function provides similar
671     /// functionality.
672     ///
673     /// # Overflow Behavior
674     ///
675     /// The method does no guarding against overflows, so enumerating more than
676     /// [`usize::MAX`] elements either produces the wrong result or panics. If
677     /// debug assertions are enabled, a panic is guaranteed.
678     ///
679     /// # Panics
680     ///
681     /// The returned iterator might panic if the to-be-returned index would
682     /// overflow a [`usize`].
683     ///
684     /// [`usize::MAX`]: ../../std/usize/constant.MAX.html
685     /// [`usize`]: ../../std/primitive.usize.html
686     /// [`zip`]: #method.zip
687     ///
688     /// # Examples
689     ///
690     /// ```
691     /// let a = ['a', 'b', 'c'];
692     ///
693     /// let mut iter = a.iter().enumerate();
694     ///
695     /// assert_eq!(iter.next(), Some((0, &'a')));
696     /// assert_eq!(iter.next(), Some((1, &'b')));
697     /// assert_eq!(iter.next(), Some((2, &'c')));
698     /// assert_eq!(iter.next(), None);
699     /// ```
700     #[inline]
701     #[stable(feature = "rust1", since = "1.0.0")]
702     fn enumerate(self) -> Enumerate<Self> where Self: Sized {
703         Enumerate { iter: self, count: 0 }
704     }
705
706     /// Creates an iterator which can use `peek` to look at the next element of
707     /// the iterator without consuming it.
708     ///
709     /// Adds a [`peek`] method to an iterator. See its documentation for
710     /// more information.
711     ///
712     /// Note that the underlying iterator is still advanced when [`peek`] is
713     /// called for the first time: In order to retrieve the next element,
714     /// [`next`] is called on the underlying iterator, hence any side effects (i.e.
715     /// anything other than fetching the next value) of the [`next`] method
716     /// will occur.
717     ///
718     /// [`peek`]: struct.Peekable.html#method.peek
719     /// [`next`]: ../../std/iter/trait.Iterator.html#tymethod.next
720     ///
721     /// # Examples
722     ///
723     /// Basic usage:
724     ///
725     /// ```
726     /// let xs = [1, 2, 3];
727     ///
728     /// let mut iter = xs.iter().peekable();
729     ///
730     /// // peek() lets us see into the future
731     /// assert_eq!(iter.peek(), Some(&&1));
732     /// assert_eq!(iter.next(), Some(&1));
733     ///
734     /// assert_eq!(iter.next(), Some(&2));
735     ///
736     /// // we can peek() multiple times, the iterator won't advance
737     /// assert_eq!(iter.peek(), Some(&&3));
738     /// assert_eq!(iter.peek(), Some(&&3));
739     ///
740     /// assert_eq!(iter.next(), Some(&3));
741     ///
742     /// // after the iterator is finished, so is peek()
743     /// assert_eq!(iter.peek(), None);
744     /// assert_eq!(iter.next(), None);
745     /// ```
746     #[inline]
747     #[stable(feature = "rust1", since = "1.0.0")]
748     fn peekable(self) -> Peekable<Self> where Self: Sized {
749         Peekable{iter: self, peeked: None}
750     }
751
752     /// Creates an iterator that [`skip`]s elements based on a predicate.
753     ///
754     /// [`skip`]: #method.skip
755     ///
756     /// `skip_while()` takes a closure as an argument. It will call this
757     /// closure on each element of the iterator, and ignore elements
758     /// until it returns `false`.
759     ///
760     /// After `false` is returned, `skip_while()`'s job is over, and the
761     /// rest of the elements are yielded.
762     ///
763     /// # Examples
764     ///
765     /// Basic usage:
766     ///
767     /// ```
768     /// let a = [-1i32, 0, 1];
769     ///
770     /// let mut iter = a.into_iter().skip_while(|x| x.is_negative());
771     ///
772     /// assert_eq!(iter.next(), Some(&0));
773     /// assert_eq!(iter.next(), Some(&1));
774     /// assert_eq!(iter.next(), None);
775     /// ```
776     ///
777     /// Because the closure passed to `skip_while()` takes a reference, and many
778     /// iterators iterate over references, this leads to a possibly confusing
779     /// situation, where the type of the closure is a double reference:
780     ///
781     /// ```
782     /// let a = [-1, 0, 1];
783     ///
784     /// let mut iter = a.into_iter().skip_while(|x| **x < 0); // need two *s!
785     ///
786     /// assert_eq!(iter.next(), Some(&0));
787     /// assert_eq!(iter.next(), Some(&1));
788     /// assert_eq!(iter.next(), None);
789     /// ```
790     ///
791     /// Stopping after an initial `false`:
792     ///
793     /// ```
794     /// let a = [-1, 0, 1, -2];
795     ///
796     /// let mut iter = a.into_iter().skip_while(|x| **x < 0);
797     ///
798     /// assert_eq!(iter.next(), Some(&0));
799     /// assert_eq!(iter.next(), Some(&1));
800     ///
801     /// // while this would have been false, since we already got a false,
802     /// // skip_while() isn't used any more
803     /// assert_eq!(iter.next(), Some(&-2));
804     ///
805     /// assert_eq!(iter.next(), None);
806     /// ```
807     #[inline]
808     #[stable(feature = "rust1", since = "1.0.0")]
809     fn skip_while<P>(self, predicate: P) -> SkipWhile<Self, P> where
810         Self: Sized, P: FnMut(&Self::Item) -> bool,
811     {
812         SkipWhile{iter: self, flag: false, predicate: predicate}
813     }
814
815     /// Creates an iterator that yields elements based on a predicate.
816     ///
817     /// `take_while()` takes a closure as an argument. It will call this
818     /// closure on each element of the iterator, and yield elements
819     /// while it returns `true`.
820     ///
821     /// After `false` is returned, `take_while()`'s job is over, and the
822     /// rest of the elements are ignored.
823     ///
824     /// # Examples
825     ///
826     /// Basic usage:
827     ///
828     /// ```
829     /// let a = [-1i32, 0, 1];
830     ///
831     /// let mut iter = a.into_iter().take_while(|x| x.is_negative());
832     ///
833     /// assert_eq!(iter.next(), Some(&-1));
834     /// assert_eq!(iter.next(), None);
835     /// ```
836     ///
837     /// Because the closure passed to `take_while()` takes a reference, and many
838     /// iterators iterate over references, this leads to a possibly confusing
839     /// situation, where the type of the closure is a double reference:
840     ///
841     /// ```
842     /// let a = [-1, 0, 1];
843     ///
844     /// let mut iter = a.into_iter().take_while(|x| **x < 0); // need two *s!
845     ///
846     /// assert_eq!(iter.next(), Some(&-1));
847     /// assert_eq!(iter.next(), None);
848     /// ```
849     ///
850     /// Stopping after an initial `false`:
851     ///
852     /// ```
853     /// let a = [-1, 0, 1, -2];
854     ///
855     /// let mut iter = a.into_iter().take_while(|x| **x < 0);
856     ///
857     /// assert_eq!(iter.next(), Some(&-1));
858     ///
859     /// // We have more elements that are less than zero, but since we already
860     /// // got a false, take_while() isn't used any more
861     /// assert_eq!(iter.next(), None);
862     /// ```
863     ///
864     /// Because `take_while()` needs to look at the value in order to see if it
865     /// should be included or not, consuming iterators will see that it is
866     /// removed:
867     ///
868     /// ```
869     /// let a = [1, 2, 3, 4];
870     /// let mut iter = a.into_iter();
871     ///
872     /// let result: Vec<i32> = iter.by_ref()
873     ///                            .take_while(|n| **n != 3)
874     ///                            .cloned()
875     ///                            .collect();
876     ///
877     /// assert_eq!(result, &[1, 2]);
878     ///
879     /// let result: Vec<i32> = iter.cloned().collect();
880     ///
881     /// assert_eq!(result, &[4]);
882     /// ```
883     ///
884     /// The `3` is no longer there, because it was consumed in order to see if
885     /// the iteration should stop, but wasn't placed back into the iterator or
886     /// some similar thing.
887     #[inline]
888     #[stable(feature = "rust1", since = "1.0.0")]
889     fn take_while<P>(self, predicate: P) -> TakeWhile<Self, P> where
890         Self: Sized, P: FnMut(&Self::Item) -> bool,
891     {
892         TakeWhile{iter: self, flag: false, predicate: predicate}
893     }
894
895     /// Creates an iterator that skips the first `n` elements.
896     ///
897     /// After they have been consumed, the rest of the elements are yielded.
898     ///
899     /// # Examples
900     ///
901     /// Basic usage:
902     ///
903     /// ```
904     /// let a = [1, 2, 3];
905     ///
906     /// let mut iter = a.iter().skip(2);
907     ///
908     /// assert_eq!(iter.next(), Some(&3));
909     /// assert_eq!(iter.next(), None);
910     /// ```
911     #[inline]
912     #[stable(feature = "rust1", since = "1.0.0")]
913     fn skip(self, n: usize) -> Skip<Self> where Self: Sized {
914         Skip{iter: self, n: n}
915     }
916
917     /// Creates an iterator that yields its first `n` elements.
918     ///
919     /// # Examples
920     ///
921     /// Basic usage:
922     ///
923     /// ```
924     /// let a = [1, 2, 3];
925     ///
926     /// let mut iter = a.iter().take(2);
927     ///
928     /// assert_eq!(iter.next(), Some(&1));
929     /// assert_eq!(iter.next(), Some(&2));
930     /// assert_eq!(iter.next(), None);
931     /// ```
932     ///
933     /// `take()` is often used with an infinite iterator, to make it finite:
934     ///
935     /// ```
936     /// let mut iter = (0..).take(3);
937     ///
938     /// assert_eq!(iter.next(), Some(0));
939     /// assert_eq!(iter.next(), Some(1));
940     /// assert_eq!(iter.next(), Some(2));
941     /// assert_eq!(iter.next(), None);
942     /// ```
943     #[inline]
944     #[stable(feature = "rust1", since = "1.0.0")]
945     fn take(self, n: usize) -> Take<Self> where Self: Sized, {
946         Take{iter: self, n: n}
947     }
948
949     /// An iterator adaptor similar to [`fold`] that holds internal state and
950     /// produces a new iterator.
951     ///
952     /// [`fold`]: #method.fold
953     ///
954     /// `scan()` takes two arguments: an initial value which seeds the internal
955     /// state, and a closure with two arguments, the first being a mutable
956     /// reference to the internal state and the second an iterator element.
957     /// The closure can assign to the internal state to share state between
958     /// iterations.
959     ///
960     /// On iteration, the closure will be applied to each element of the
961     /// iterator and the return value from the closure, an [`Option`], is
962     /// yielded by the iterator.
963     ///
964     /// [`Option`]: ../../std/option/enum.Option.html
965     ///
966     /// # Examples
967     ///
968     /// Basic usage:
969     ///
970     /// ```
971     /// let a = [1, 2, 3];
972     ///
973     /// let mut iter = a.iter().scan(1, |state, &x| {
974     ///     // each iteration, we'll multiply the state by the element
975     ///     *state = *state * x;
976     ///
977     ///     // then, we'll yield the negation of the state
978     ///     Some(-*state)
979     /// });
980     ///
981     /// assert_eq!(iter.next(), Some(-1));
982     /// assert_eq!(iter.next(), Some(-2));
983     /// assert_eq!(iter.next(), Some(-6));
984     /// assert_eq!(iter.next(), None);
985     /// ```
986     #[inline]
987     #[stable(feature = "rust1", since = "1.0.0")]
988     fn scan<St, B, F>(self, initial_state: St, f: F) -> Scan<Self, St, F>
989         where Self: Sized, F: FnMut(&mut St, Self::Item) -> Option<B>,
990     {
991         Scan{iter: self, f: f, state: initial_state}
992     }
993
994     /// Creates an iterator that works like map, but flattens nested structure.
995     ///
996     /// The [`map`] adapter is very useful, but only when the closure
997     /// argument produces values. If it produces an iterator instead, there's
998     /// an extra layer of indirection. `flat_map()` will remove this extra layer
999     /// on its own.
1000     ///
1001     /// You can think of [`flat_map(f)`][flat_map] as the semantic equivalent
1002     /// of [`map`]ping, and then [`flatten`]ing as in `map(f).flatten()`.
1003     ///
1004     /// Another way of thinking about `flat_map()`: [`map`]'s closure returns
1005     /// one item for each element, and `flat_map()`'s closure returns an
1006     /// iterator for each element.
1007     ///
1008     /// [`map`]: #method.map
1009     /// [`flatten`]: #method.flatten
1010     ///
1011     /// # Examples
1012     ///
1013     /// Basic usage:
1014     ///
1015     /// ```
1016     /// let words = ["alpha", "beta", "gamma"];
1017     ///
1018     /// // chars() returns an iterator
1019     /// let merged: String = words.iter()
1020     ///                           .flat_map(|s| s.chars())
1021     ///                           .collect();
1022     /// assert_eq!(merged, "alphabetagamma");
1023     /// ```
1024     #[inline]
1025     #[stable(feature = "rust1", since = "1.0.0")]
1026     fn flat_map<U, F>(self, f: F) -> FlatMap<Self, U, F>
1027         where Self: Sized, U: IntoIterator, F: FnMut(Self::Item) -> U,
1028     {
1029         FlatMap { inner: flatten_compat(self.map(f)) }
1030     }
1031
1032     /// Creates an iterator that flattens nested structure.
1033     ///
1034     /// This is useful when you have an iterator of iterators or an iterator of
1035     /// things that can be turned into iterators and you want to remove one
1036     /// level of indirection.
1037     ///
1038     /// # Examples
1039     ///
1040     /// Basic usage:
1041     ///
1042     /// ```
1043     /// #![feature(iterator_flatten)]
1044     ///
1045     /// let data = vec![vec![1, 2, 3, 4], vec![5, 6]];
1046     /// let flattened = data.into_iter().flatten().collect::<Vec<u8>>();
1047     /// assert_eq!(flattened, &[1, 2, 3, 4, 5, 6]);
1048     /// ```
1049     ///
1050     /// Mapping and then flattening:
1051     ///
1052     /// ```
1053     /// #![feature(iterator_flatten)]
1054     ///
1055     /// let words = ["alpha", "beta", "gamma"];
1056     ///
1057     /// // chars() returns an iterator
1058     /// let merged: String = words.iter()
1059     ///                           .map(|s| s.chars())
1060     ///                           .flatten()
1061     ///                           .collect();
1062     /// assert_eq!(merged, "alphabetagamma");
1063     /// ```
1064     ///
1065     /// You can also rewrite this in terms of [`flat_map()`], which is preferable
1066     /// in this case since it conveys intent more clearly:
1067     ///
1068     /// ```
1069     /// let words = ["alpha", "beta", "gamma"];
1070     ///
1071     /// // chars() returns an iterator
1072     /// let merged: String = words.iter()
1073     ///                           .flat_map(|s| s.chars())
1074     ///                           .collect();
1075     /// assert_eq!(merged, "alphabetagamma");
1076     /// ```
1077     ///
1078     /// Flattening once only removes one level of nesting:
1079     ///
1080     /// ```
1081     /// #![feature(iterator_flatten)]
1082     ///
1083     /// let d3 = [[[1, 2], [3, 4]], [[5, 6], [7, 8]]];
1084     ///
1085     /// let d2 = d3.iter().flatten().collect::<Vec<_>>();
1086     /// assert_eq!(d2, [&[1, 2], &[3, 4], &[5, 6], &[7, 8]]);
1087     ///
1088     /// let d1 = d3.iter().flatten().flatten().collect::<Vec<_>>();
1089     /// assert_eq!(d1, [&1, &2, &3, &4, &5, &6, &7, &8]);
1090     /// ```
1091     ///
1092     /// Here we see that `flatten()` does not perform a "deep" flatten.
1093     /// Instead, only one level of nesting is removed. That is, if you
1094     /// `flatten()` a three-dimensional array the result will be
1095     /// two-dimensional and not one-dimensional. To get a one-dimensional
1096     /// structure, you have to `flatten()` again.
1097     #[inline]
1098     #[unstable(feature = "iterator_flatten", issue = "48213")]
1099     fn flatten(self) -> Flatten<Self>
1100     where Self: Sized, Self::Item: IntoIterator {
1101         Flatten { inner: flatten_compat(self) }
1102     }
1103
1104     /// Creates an iterator which ends after the first [`None`].
1105     ///
1106     /// After an iterator returns [`None`], future calls may or may not yield
1107     /// [`Some(T)`] again. `fuse()` adapts an iterator, ensuring that after a
1108     /// [`None`] is given, it will always return [`None`] forever.
1109     ///
1110     /// [`None`]: ../../std/option/enum.Option.html#variant.None
1111     /// [`Some(T)`]: ../../std/option/enum.Option.html#variant.Some
1112     ///
1113     /// # Examples
1114     ///
1115     /// Basic usage:
1116     ///
1117     /// ```
1118     /// // an iterator which alternates between Some and None
1119     /// struct Alternate {
1120     ///     state: i32,
1121     /// }
1122     ///
1123     /// impl Iterator for Alternate {
1124     ///     type Item = i32;
1125     ///
1126     ///     fn next(&mut self) -> Option<i32> {
1127     ///         let val = self.state;
1128     ///         self.state = self.state + 1;
1129     ///
1130     ///         // if it's even, Some(i32), else None
1131     ///         if val % 2 == 0 {
1132     ///             Some(val)
1133     ///         } else {
1134     ///             None
1135     ///         }
1136     ///     }
1137     /// }
1138     ///
1139     /// let mut iter = Alternate { state: 0 };
1140     ///
1141     /// // we can see our iterator going back and forth
1142     /// assert_eq!(iter.next(), Some(0));
1143     /// assert_eq!(iter.next(), None);
1144     /// assert_eq!(iter.next(), Some(2));
1145     /// assert_eq!(iter.next(), None);
1146     ///
1147     /// // however, once we fuse it...
1148     /// let mut iter = iter.fuse();
1149     ///
1150     /// assert_eq!(iter.next(), Some(4));
1151     /// assert_eq!(iter.next(), None);
1152     ///
1153     /// // it will always return None after the first time.
1154     /// assert_eq!(iter.next(), None);
1155     /// assert_eq!(iter.next(), None);
1156     /// assert_eq!(iter.next(), None);
1157     /// ```
1158     #[inline]
1159     #[stable(feature = "rust1", since = "1.0.0")]
1160     fn fuse(self) -> Fuse<Self> where Self: Sized {
1161         Fuse{iter: self, done: false}
1162     }
1163
1164     /// Do something with each element of an iterator, passing the value on.
1165     ///
1166     /// When using iterators, you'll often chain several of them together.
1167     /// While working on such code, you might want to check out what's
1168     /// happening at various parts in the pipeline. To do that, insert
1169     /// a call to `inspect()`.
1170     ///
1171     /// It's much more common for `inspect()` to be used as a debugging tool
1172     /// than to exist in your final code, but never say never.
1173     ///
1174     /// # Examples
1175     ///
1176     /// Basic usage:
1177     ///
1178     /// ```
1179     /// let a = [1, 4, 2, 3];
1180     ///
1181     /// // this iterator sequence is complex.
1182     /// let sum = a.iter()
1183     ///     .cloned()
1184     ///     .filter(|x| x % 2 == 0)
1185     ///     .fold(0, |sum, i| sum + i);
1186     ///
1187     /// println!("{}", sum);
1188     ///
1189     /// // let's add some inspect() calls to investigate what's happening
1190     /// let sum = a.iter()
1191     ///     .cloned()
1192     ///     .inspect(|x| println!("about to filter: {}", x))
1193     ///     .filter(|x| x % 2 == 0)
1194     ///     .inspect(|x| println!("made it through filter: {}", x))
1195     ///     .fold(0, |sum, i| sum + i);
1196     ///
1197     /// println!("{}", sum);
1198     /// ```
1199     ///
1200     /// This will print:
1201     ///
1202     /// ```text
1203     /// 6
1204     /// about to filter: 1
1205     /// about to filter: 4
1206     /// made it through filter: 4
1207     /// about to filter: 2
1208     /// made it through filter: 2
1209     /// about to filter: 3
1210     /// 6
1211     /// ```
1212     #[inline]
1213     #[stable(feature = "rust1", since = "1.0.0")]
1214     fn inspect<F>(self, f: F) -> Inspect<Self, F> where
1215         Self: Sized, F: FnMut(&Self::Item),
1216     {
1217         Inspect{iter: self, f: f}
1218     }
1219
1220     /// Borrows an iterator, rather than consuming it.
1221     ///
1222     /// This is useful to allow applying iterator adaptors while still
1223     /// retaining ownership of the original iterator.
1224     ///
1225     /// # Examples
1226     ///
1227     /// Basic usage:
1228     ///
1229     /// ```
1230     /// let a = [1, 2, 3];
1231     ///
1232     /// let iter = a.into_iter();
1233     ///
1234     /// let sum: i32 = iter.take(5).fold(0, |acc, i| acc + i );
1235     ///
1236     /// assert_eq!(sum, 6);
1237     ///
1238     /// // if we try to use iter again, it won't work. The following line
1239     /// // gives "error: use of moved value: `iter`
1240     /// // assert_eq!(iter.next(), None);
1241     ///
1242     /// // let's try that again
1243     /// let a = [1, 2, 3];
1244     ///
1245     /// let mut iter = a.into_iter();
1246     ///
1247     /// // instead, we add in a .by_ref()
1248     /// let sum: i32 = iter.by_ref().take(2).fold(0, |acc, i| acc + i );
1249     ///
1250     /// assert_eq!(sum, 3);
1251     ///
1252     /// // now this is just fine:
1253     /// assert_eq!(iter.next(), Some(&3));
1254     /// assert_eq!(iter.next(), None);
1255     /// ```
1256     #[stable(feature = "rust1", since = "1.0.0")]
1257     fn by_ref(&mut self) -> &mut Self where Self: Sized { self }
1258
1259     /// Transforms an iterator into a collection.
1260     ///
1261     /// `collect()` can take anything iterable, and turn it into a relevant
1262     /// collection. This is one of the more powerful methods in the standard
1263     /// library, used in a variety of contexts.
1264     ///
1265     /// The most basic pattern in which `collect()` is used is to turn one
1266     /// collection into another. You take a collection, call [`iter`] on it,
1267     /// do a bunch of transformations, and then `collect()` at the end.
1268     ///
1269     /// One of the keys to `collect()`'s power is that many things you might
1270     /// not think of as 'collections' actually are. For example, a [`String`]
1271     /// is a collection of [`char`]s. And a collection of
1272     /// [`Result<T, E>`][`Result`] can be thought of as single
1273     /// [`Result`]`<Collection<T>, E>`. See the examples below for more.
1274     ///
1275     /// Because `collect()` is so general, it can cause problems with type
1276     /// inference. As such, `collect()` is one of the few times you'll see
1277     /// the syntax affectionately known as the 'turbofish': `::<>`. This
1278     /// helps the inference algorithm understand specifically which collection
1279     /// you're trying to collect into.
1280     ///
1281     /// # Examples
1282     ///
1283     /// Basic usage:
1284     ///
1285     /// ```
1286     /// let a = [1, 2, 3];
1287     ///
1288     /// let doubled: Vec<i32> = a.iter()
1289     ///                          .map(|&x| x * 2)
1290     ///                          .collect();
1291     ///
1292     /// assert_eq!(vec![2, 4, 6], doubled);
1293     /// ```
1294     ///
1295     /// Note that we needed the `: Vec<i32>` on the left-hand side. This is because
1296     /// we could collect into, for example, a [`VecDeque<T>`] instead:
1297     ///
1298     /// [`VecDeque<T>`]: ../../std/collections/struct.VecDeque.html
1299     ///
1300     /// ```
1301     /// use std::collections::VecDeque;
1302     ///
1303     /// let a = [1, 2, 3];
1304     ///
1305     /// let doubled: VecDeque<i32> = a.iter().map(|&x| x * 2).collect();
1306     ///
1307     /// assert_eq!(2, doubled[0]);
1308     /// assert_eq!(4, doubled[1]);
1309     /// assert_eq!(6, doubled[2]);
1310     /// ```
1311     ///
1312     /// Using the 'turbofish' instead of annotating `doubled`:
1313     ///
1314     /// ```
1315     /// let a = [1, 2, 3];
1316     ///
1317     /// let doubled = a.iter().map(|x| x * 2).collect::<Vec<i32>>();
1318     ///
1319     /// assert_eq!(vec![2, 4, 6], doubled);
1320     /// ```
1321     ///
1322     /// Because `collect()` only cares about what you're collecting into, you can
1323     /// still use a partial type hint, `_`, with the turbofish:
1324     ///
1325     /// ```
1326     /// let a = [1, 2, 3];
1327     ///
1328     /// let doubled = a.iter().map(|x| x * 2).collect::<Vec<_>>();
1329     ///
1330     /// assert_eq!(vec![2, 4, 6], doubled);
1331     /// ```
1332     ///
1333     /// Using `collect()` to make a [`String`]:
1334     ///
1335     /// ```
1336     /// let chars = ['g', 'd', 'k', 'k', 'n'];
1337     ///
1338     /// let hello: String = chars.iter()
1339     ///     .map(|&x| x as u8)
1340     ///     .map(|x| (x + 1) as char)
1341     ///     .collect();
1342     ///
1343     /// assert_eq!("hello", hello);
1344     /// ```
1345     ///
1346     /// If you have a list of [`Result<T, E>`][`Result`]s, you can use `collect()` to
1347     /// see if any of them failed:
1348     ///
1349     /// ```
1350     /// let results = [Ok(1), Err("nope"), Ok(3), Err("bad")];
1351     ///
1352     /// let result: Result<Vec<_>, &str> = results.iter().cloned().collect();
1353     ///
1354     /// // gives us the first error
1355     /// assert_eq!(Err("nope"), result);
1356     ///
1357     /// let results = [Ok(1), Ok(3)];
1358     ///
1359     /// let result: Result<Vec<_>, &str> = results.iter().cloned().collect();
1360     ///
1361     /// // gives us the list of answers
1362     /// assert_eq!(Ok(vec![1, 3]), result);
1363     /// ```
1364     ///
1365     /// [`iter`]: ../../std/iter/trait.Iterator.html#tymethod.next
1366     /// [`String`]: ../../std/string/struct.String.html
1367     /// [`char`]: ../../std/primitive.char.html
1368     /// [`Result`]: ../../std/result/enum.Result.html
1369     #[inline]
1370     #[stable(feature = "rust1", since = "1.0.0")]
1371     fn collect<B: FromIterator<Self::Item>>(self) -> B where Self: Sized {
1372         FromIterator::from_iter(self)
1373     }
1374
1375     /// Consumes an iterator, creating two collections from it.
1376     ///
1377     /// The predicate passed to `partition()` can return `true`, or `false`.
1378     /// `partition()` returns a pair, all of the elements for which it returned
1379     /// `true`, and all of the elements for which it returned `false`.
1380     ///
1381     /// # Examples
1382     ///
1383     /// Basic usage:
1384     ///
1385     /// ```
1386     /// let a = [1, 2, 3];
1387     ///
1388     /// let (even, odd): (Vec<i32>, Vec<i32>) = a
1389     ///     .into_iter()
1390     ///     .partition(|&n| n % 2 == 0);
1391     ///
1392     /// assert_eq!(even, vec![2]);
1393     /// assert_eq!(odd, vec![1, 3]);
1394     /// ```
1395     #[stable(feature = "rust1", since = "1.0.0")]
1396     fn partition<B, F>(self, mut f: F) -> (B, B) where
1397         Self: Sized,
1398         B: Default + Extend<Self::Item>,
1399         F: FnMut(&Self::Item) -> bool
1400     {
1401         let mut left: B = Default::default();
1402         let mut right: B = Default::default();
1403
1404         for x in self {
1405             if f(&x) {
1406                 left.extend(Some(x))
1407             } else {
1408                 right.extend(Some(x))
1409             }
1410         }
1411
1412         (left, right)
1413     }
1414
1415     /// An iterator method that applies a function as long as it returns
1416     /// successfully, producing a single, final value.
1417     ///
1418     /// `try_fold()` takes two arguments: an initial value, and a closure with
1419     /// two arguments: an 'accumulator', and an element. The closure either
1420     /// returns successfully, with the value that the accumulator should have
1421     /// for the next iteration, or it returns failure, with an error value that
1422     /// is propagated back to the caller immediately (short-circuiting).
1423     ///
1424     /// The initial value is the value the accumulator will have on the first
1425     /// call.  If applying the closure succeeded against every element of the
1426     /// iterator, `try_fold()` returns the final accumulator as success.
1427     ///
1428     /// Folding is useful whenever you have a collection of something, and want
1429     /// to produce a single value from it.
1430     ///
1431     /// # Note to Implementors
1432     ///
1433     /// Most of the other (forward) methods have default implementations in
1434     /// terms of this one, so try to implement this explicitly if it can
1435     /// do something better than the default `for` loop implementation.
1436     ///
1437     /// In particular, try to have this call `try_fold()` on the internal parts
1438     /// from which this iterator is composed.  If multiple calls are needed,
1439     /// the `?` operator may be convenient for chaining the accumulator value
1440     /// along, but beware any invariants that need to be upheld before those
1441     /// early returns.  This is a `&mut self` method, so iteration needs to be
1442     /// resumable after hitting an error here.
1443     ///
1444     /// # Examples
1445     ///
1446     /// Basic usage:
1447     ///
1448     /// ```
1449     /// #![feature(iterator_try_fold)]
1450     /// let a = [1, 2, 3];
1451     ///
1452     /// // the checked sum of all of the elements of the array
1453     /// let sum = a.iter().try_fold(0i8, |acc, &x| acc.checked_add(x));
1454     ///
1455     /// assert_eq!(sum, Some(6));
1456     /// ```
1457     ///
1458     /// Short-circuiting:
1459     ///
1460     /// ```
1461     /// #![feature(iterator_try_fold)]
1462     /// let a = [10, 20, 30, 100, 40, 50];
1463     /// let mut it = a.iter();
1464     ///
1465     /// // This sum overflows when adding the 100 element
1466     /// let sum = it.try_fold(0i8, |acc, &x| acc.checked_add(x));
1467     /// assert_eq!(sum, None);
1468     ///
1469     /// // Because it short-circuited, the remaining elements are still
1470     /// // available through the iterator.
1471     /// assert_eq!(it.len(), 2);
1472     /// assert_eq!(it.next(), Some(&40));
1473     /// ```
1474     #[inline]
1475     #[unstable(feature = "iterator_try_fold", issue = "45594")]
1476     fn try_fold<B, F, R>(&mut self, init: B, mut f: F) -> R where
1477         Self: Sized, F: FnMut(B, Self::Item) -> R, R: Try<Ok=B>
1478     {
1479         let mut accum = init;
1480         while let Some(x) = self.next() {
1481             accum = f(accum, x)?;
1482         }
1483         Try::from_ok(accum)
1484     }
1485
1486     /// An iterator method that applies a fallible function to each item in the
1487     /// iterator, stopping at the first error and returning that error.
1488     ///
1489     /// This can also be thought of as the fallible form of [`for_each()`]
1490     /// or as the stateless version of [`try_fold()`].
1491     ///
1492     /// [`for_each()`]: #method.for_each
1493     /// [`try_fold()`]: #method.try_fold
1494     ///
1495     /// # Examples
1496     ///
1497     /// ```
1498     /// #![feature(iterator_try_fold)]
1499     /// use std::fs::rename;
1500     /// use std::io::{stdout, Write};
1501     /// use std::path::Path;
1502     ///
1503     /// let data = ["no_tea.txt", "stale_bread.json", "torrential_rain.png"];
1504     ///
1505     /// let res = data.iter().try_for_each(|x| writeln!(stdout(), "{}", x));
1506     /// assert!(res.is_ok());
1507     ///
1508     /// let mut it = data.iter().cloned();
1509     /// let res = it.try_for_each(|x| rename(x, Path::new(x).with_extension("old")));
1510     /// assert!(res.is_err());
1511     /// // It short-circuited, so the remaining items are still in the iterator:
1512     /// assert_eq!(it.next(), Some("stale_bread.json"));
1513     /// ```
1514     #[inline]
1515     #[unstable(feature = "iterator_try_fold", issue = "45594")]
1516     fn try_for_each<F, R>(&mut self, mut f: F) -> R where
1517         Self: Sized, F: FnMut(Self::Item) -> R, R: Try<Ok=()>
1518     {
1519         self.try_fold((), move |(), x| f(x))
1520     }
1521
1522     /// An iterator method that applies a function, producing a single, final value.
1523     ///
1524     /// `fold()` takes two arguments: an initial value, and a closure with two
1525     /// arguments: an 'accumulator', and an element. The closure returns the value that
1526     /// the accumulator should have for the next iteration.
1527     ///
1528     /// The initial value is the value the accumulator will have on the first
1529     /// call.
1530     ///
1531     /// After applying this closure to every element of the iterator, `fold()`
1532     /// returns the accumulator.
1533     ///
1534     /// This operation is sometimes called 'reduce' or 'inject'.
1535     ///
1536     /// Folding is useful whenever you have a collection of something, and want
1537     /// to produce a single value from it.
1538     ///
1539     /// Note: `fold()`, and similar methods that traverse the entire iterator,
1540     /// may not terminate for infinite iterators, even on traits for which a
1541     /// result is determinable in finite time.
1542     ///
1543     /// # Examples
1544     ///
1545     /// Basic usage:
1546     ///
1547     /// ```
1548     /// let a = [1, 2, 3];
1549     ///
1550     /// // the sum of all of the elements of the array
1551     /// let sum = a.iter().fold(0, |acc, x| acc + x);
1552     ///
1553     /// assert_eq!(sum, 6);
1554     /// ```
1555     ///
1556     /// Let's walk through each step of the iteration here:
1557     ///
1558     /// | element | acc | x | result |
1559     /// |---------|-----|---|--------|
1560     /// |         | 0   |   |        |
1561     /// | 1       | 0   | 1 | 1      |
1562     /// | 2       | 1   | 2 | 3      |
1563     /// | 3       | 3   | 3 | 6      |
1564     ///
1565     /// And so, our final result, `6`.
1566     ///
1567     /// It's common for people who haven't used iterators a lot to
1568     /// use a `for` loop with a list of things to build up a result. Those
1569     /// can be turned into `fold()`s:
1570     ///
1571     /// [`for`]: ../../book/first-edition/loops.html#for
1572     ///
1573     /// ```
1574     /// let numbers = [1, 2, 3, 4, 5];
1575     ///
1576     /// let mut result = 0;
1577     ///
1578     /// // for loop:
1579     /// for i in &numbers {
1580     ///     result = result + i;
1581     /// }
1582     ///
1583     /// // fold:
1584     /// let result2 = numbers.iter().fold(0, |acc, &x| acc + x);
1585     ///
1586     /// // they're the same
1587     /// assert_eq!(result, result2);
1588     /// ```
1589     #[inline]
1590     #[stable(feature = "rust1", since = "1.0.0")]
1591     fn fold<B, F>(mut self, init: B, mut f: F) -> B where
1592         Self: Sized, F: FnMut(B, Self::Item) -> B,
1593     {
1594         self.try_fold(init, move |acc, x| AlwaysOk(f(acc, x))).0
1595     }
1596
1597     /// Tests if every element of the iterator matches a predicate.
1598     ///
1599     /// `all()` takes a closure that returns `true` or `false`. It applies
1600     /// this closure to each element of the iterator, and if they all return
1601     /// `true`, then so does `all()`. If any of them return `false`, it
1602     /// returns `false`.
1603     ///
1604     /// `all()` is short-circuiting; in other words, it will stop processing
1605     /// as soon as it finds a `false`, given that no matter what else happens,
1606     /// the result will also be `false`.
1607     ///
1608     /// An empty iterator returns `true`.
1609     ///
1610     /// # Examples
1611     ///
1612     /// Basic usage:
1613     ///
1614     /// ```
1615     /// let a = [1, 2, 3];
1616     ///
1617     /// assert!(a.iter().all(|&x| x > 0));
1618     ///
1619     /// assert!(!a.iter().all(|&x| x > 2));
1620     /// ```
1621     ///
1622     /// Stopping at the first `false`:
1623     ///
1624     /// ```
1625     /// let a = [1, 2, 3];
1626     ///
1627     /// let mut iter = a.iter();
1628     ///
1629     /// assert!(!iter.all(|&x| x != 2));
1630     ///
1631     /// // we can still use `iter`, as there are more elements.
1632     /// assert_eq!(iter.next(), Some(&3));
1633     /// ```
1634     #[inline]
1635     #[stable(feature = "rust1", since = "1.0.0")]
1636     fn all<F>(&mut self, mut f: F) -> bool where
1637         Self: Sized, F: FnMut(Self::Item) -> bool
1638     {
1639         self.try_for_each(move |x| {
1640             if f(x) { LoopState::Continue(()) }
1641             else { LoopState::Break(()) }
1642         }) == LoopState::Continue(())
1643     }
1644
1645     /// Tests if any element of the iterator matches a predicate.
1646     ///
1647     /// `any()` takes a closure that returns `true` or `false`. It applies
1648     /// this closure to each element of the iterator, and if any of them return
1649     /// `true`, then so does `any()`. If they all return `false`, it
1650     /// returns `false`.
1651     ///
1652     /// `any()` is short-circuiting; in other words, it will stop processing
1653     /// as soon as it finds a `true`, given that no matter what else happens,
1654     /// the result will also be `true`.
1655     ///
1656     /// An empty iterator returns `false`.
1657     ///
1658     /// # Examples
1659     ///
1660     /// Basic usage:
1661     ///
1662     /// ```
1663     /// let a = [1, 2, 3];
1664     ///
1665     /// assert!(a.iter().any(|&x| x > 0));
1666     ///
1667     /// assert!(!a.iter().any(|&x| x > 5));
1668     /// ```
1669     ///
1670     /// Stopping at the first `true`:
1671     ///
1672     /// ```
1673     /// let a = [1, 2, 3];
1674     ///
1675     /// let mut iter = a.iter();
1676     ///
1677     /// assert!(iter.any(|&x| x != 2));
1678     ///
1679     /// // we can still use `iter`, as there are more elements.
1680     /// assert_eq!(iter.next(), Some(&2));
1681     /// ```
1682     #[inline]
1683     #[stable(feature = "rust1", since = "1.0.0")]
1684     fn any<F>(&mut self, mut f: F) -> bool where
1685         Self: Sized,
1686         F: FnMut(Self::Item) -> bool
1687     {
1688         self.try_for_each(move |x| {
1689             if f(x) { LoopState::Break(()) }
1690             else { LoopState::Continue(()) }
1691         }) == LoopState::Break(())
1692     }
1693
1694     /// Searches for an element of an iterator that satisfies a predicate.
1695     ///
1696     /// `find()` takes a closure that returns `true` or `false`. It applies
1697     /// this closure to each element of the iterator, and if any of them return
1698     /// `true`, then `find()` returns [`Some(element)`]. If they all return
1699     /// `false`, it returns [`None`].
1700     ///
1701     /// `find()` is short-circuiting; in other words, it will stop processing
1702     /// as soon as the closure returns `true`.
1703     ///
1704     /// Because `find()` takes a reference, and many iterators iterate over
1705     /// references, this leads to a possibly confusing situation where the
1706     /// argument is a double reference. You can see this effect in the
1707     /// examples below, with `&&x`.
1708     ///
1709     /// [`Some(element)`]: ../../std/option/enum.Option.html#variant.Some
1710     /// [`None`]: ../../std/option/enum.Option.html#variant.None
1711     ///
1712     /// # Examples
1713     ///
1714     /// Basic usage:
1715     ///
1716     /// ```
1717     /// let a = [1, 2, 3];
1718     ///
1719     /// assert_eq!(a.iter().find(|&&x| x == 2), Some(&2));
1720     ///
1721     /// assert_eq!(a.iter().find(|&&x| x == 5), None);
1722     /// ```
1723     ///
1724     /// Stopping at the first `true`:
1725     ///
1726     /// ```
1727     /// let a = [1, 2, 3];
1728     ///
1729     /// let mut iter = a.iter();
1730     ///
1731     /// assert_eq!(iter.find(|&&x| x == 2), Some(&2));
1732     ///
1733     /// // we can still use `iter`, as there are more elements.
1734     /// assert_eq!(iter.next(), Some(&3));
1735     /// ```
1736     #[inline]
1737     #[stable(feature = "rust1", since = "1.0.0")]
1738     fn find<P>(&mut self, mut predicate: P) -> Option<Self::Item> where
1739         Self: Sized,
1740         P: FnMut(&Self::Item) -> bool,
1741     {
1742         self.try_for_each(move |x| {
1743             if predicate(&x) { LoopState::Break(x) }
1744             else { LoopState::Continue(()) }
1745         }).break_value()
1746     }
1747
1748     /// Searches for an element in an iterator, returning its index.
1749     ///
1750     /// `position()` takes a closure that returns `true` or `false`. It applies
1751     /// this closure to each element of the iterator, and if one of them
1752     /// returns `true`, then `position()` returns [`Some(index)`]. If all of
1753     /// them return `false`, it returns [`None`].
1754     ///
1755     /// `position()` is short-circuiting; in other words, it will stop
1756     /// processing as soon as it finds a `true`.
1757     ///
1758     /// # Overflow Behavior
1759     ///
1760     /// The method does no guarding against overflows, so if there are more
1761     /// than [`usize::MAX`] non-matching elements, it either produces the wrong
1762     /// result or panics. If debug assertions are enabled, a panic is
1763     /// guaranteed.
1764     ///
1765     /// # Panics
1766     ///
1767     /// This function might panic if the iterator has more than `usize::MAX`
1768     /// non-matching elements.
1769     ///
1770     /// [`Some(index)`]: ../../std/option/enum.Option.html#variant.Some
1771     /// [`None`]: ../../std/option/enum.Option.html#variant.None
1772     /// [`usize::MAX`]: ../../std/usize/constant.MAX.html
1773     ///
1774     /// # Examples
1775     ///
1776     /// Basic usage:
1777     ///
1778     /// ```
1779     /// let a = [1, 2, 3];
1780     ///
1781     /// assert_eq!(a.iter().position(|&x| x == 2), Some(1));
1782     ///
1783     /// assert_eq!(a.iter().position(|&x| x == 5), None);
1784     /// ```
1785     ///
1786     /// Stopping at the first `true`:
1787     ///
1788     /// ```
1789     /// let a = [1, 2, 3, 4];
1790     ///
1791     /// let mut iter = a.iter();
1792     ///
1793     /// assert_eq!(iter.position(|&x| x >= 2), Some(1));
1794     ///
1795     /// // we can still use `iter`, as there are more elements.
1796     /// assert_eq!(iter.next(), Some(&3));
1797     ///
1798     /// // The returned index depends on iterator state
1799     /// assert_eq!(iter.position(|&x| x == 4), Some(0));
1800     ///
1801     /// ```
1802     #[inline]
1803     #[rustc_inherit_overflow_checks]
1804     #[stable(feature = "rust1", since = "1.0.0")]
1805     fn position<P>(&mut self, mut predicate: P) -> Option<usize> where
1806         Self: Sized,
1807         P: FnMut(Self::Item) -> bool,
1808     {
1809         // The addition might panic on overflow
1810         self.try_fold(0, move |i, x| {
1811             if predicate(x) { LoopState::Break(i) }
1812             else { LoopState::Continue(i + 1) }
1813         }).break_value()
1814     }
1815
1816     /// Searches for an element in an iterator from the right, returning its
1817     /// index.
1818     ///
1819     /// `rposition()` takes a closure that returns `true` or `false`. It applies
1820     /// this closure to each element of the iterator, starting from the end,
1821     /// and if one of them returns `true`, then `rposition()` returns
1822     /// [`Some(index)`]. If all of them return `false`, it returns [`None`].
1823     ///
1824     /// `rposition()` is short-circuiting; in other words, it will stop
1825     /// processing as soon as it finds a `true`.
1826     ///
1827     /// [`Some(index)`]: ../../std/option/enum.Option.html#variant.Some
1828     /// [`None`]: ../../std/option/enum.Option.html#variant.None
1829     ///
1830     /// # Examples
1831     ///
1832     /// Basic usage:
1833     ///
1834     /// ```
1835     /// let a = [1, 2, 3];
1836     ///
1837     /// assert_eq!(a.iter().rposition(|&x| x == 3), Some(2));
1838     ///
1839     /// assert_eq!(a.iter().rposition(|&x| x == 5), None);
1840     /// ```
1841     ///
1842     /// Stopping at the first `true`:
1843     ///
1844     /// ```
1845     /// let a = [1, 2, 3];
1846     ///
1847     /// let mut iter = a.iter();
1848     ///
1849     /// assert_eq!(iter.rposition(|&x| x == 2), Some(1));
1850     ///
1851     /// // we can still use `iter`, as there are more elements.
1852     /// assert_eq!(iter.next(), Some(&1));
1853     /// ```
1854     #[inline]
1855     #[stable(feature = "rust1", since = "1.0.0")]
1856     fn rposition<P>(&mut self, mut predicate: P) -> Option<usize> where
1857         P: FnMut(Self::Item) -> bool,
1858         Self: Sized + ExactSizeIterator + DoubleEndedIterator
1859     {
1860         // No need for an overflow check here, because `ExactSizeIterator`
1861         // implies that the number of elements fits into a `usize`.
1862         let n = self.len();
1863         self.try_rfold(n, move |i, x| {
1864             let i = i - 1;
1865             if predicate(x) { LoopState::Break(i) }
1866             else { LoopState::Continue(i) }
1867         }).break_value()
1868     }
1869
1870     /// Returns the maximum element of an iterator.
1871     ///
1872     /// If several elements are equally maximum, the last element is
1873     /// returned. If the iterator is empty, [`None`] is returned.
1874     ///
1875     /// [`None`]: ../../std/option/enum.Option.html#variant.None
1876     ///
1877     /// # Examples
1878     ///
1879     /// Basic usage:
1880     ///
1881     /// ```
1882     /// let a = [1, 2, 3];
1883     /// let b: Vec<u32> = Vec::new();
1884     ///
1885     /// assert_eq!(a.iter().max(), Some(&3));
1886     /// assert_eq!(b.iter().max(), None);
1887     /// ```
1888     #[inline]
1889     #[stable(feature = "rust1", since = "1.0.0")]
1890     fn max(self) -> Option<Self::Item> where Self: Sized, Self::Item: Ord
1891     {
1892         select_fold1(self,
1893                      |_| (),
1894                      // switch to y even if it is only equal, to preserve
1895                      // stability.
1896                      |_, x, _, y| *x <= *y)
1897             .map(|(_, x)| x)
1898     }
1899
1900     /// Returns the minimum element of an iterator.
1901     ///
1902     /// If several elements are equally minimum, the first element is
1903     /// returned. If the iterator is empty, [`None`] is returned.
1904     ///
1905     /// [`None`]: ../../std/option/enum.Option.html#variant.None
1906     ///
1907     /// # Examples
1908     ///
1909     /// Basic usage:
1910     ///
1911     /// ```
1912     /// let a = [1, 2, 3];
1913     /// let b: Vec<u32> = Vec::new();
1914     ///
1915     /// assert_eq!(a.iter().min(), Some(&1));
1916     /// assert_eq!(b.iter().min(), None);
1917     /// ```
1918     #[inline]
1919     #[stable(feature = "rust1", since = "1.0.0")]
1920     fn min(self) -> Option<Self::Item> where Self: Sized, Self::Item: Ord
1921     {
1922         select_fold1(self,
1923                      |_| (),
1924                      // only switch to y if it is strictly smaller, to
1925                      // preserve stability.
1926                      |_, x, _, y| *x > *y)
1927             .map(|(_, x)| x)
1928     }
1929
1930     /// Returns the element that gives the maximum value from the
1931     /// specified function.
1932     ///
1933     /// If several elements are equally maximum, the last element is
1934     /// returned. If the iterator is empty, [`None`] is returned.
1935     ///
1936     /// [`None`]: ../../std/option/enum.Option.html#variant.None
1937     ///
1938     /// # Examples
1939     ///
1940     /// ```
1941     /// let a = [-3_i32, 0, 1, 5, -10];
1942     /// assert_eq!(*a.iter().max_by_key(|x| x.abs()).unwrap(), -10);
1943     /// ```
1944     #[inline]
1945     #[stable(feature = "iter_cmp_by_key", since = "1.6.0")]
1946     fn max_by_key<B: Ord, F>(self, f: F) -> Option<Self::Item>
1947         where Self: Sized, F: FnMut(&Self::Item) -> B,
1948     {
1949         select_fold1(self,
1950                      f,
1951                      // switch to y even if it is only equal, to preserve
1952                      // stability.
1953                      |x_p, _, y_p, _| x_p <= y_p)
1954             .map(|(_, x)| x)
1955     }
1956
1957     /// Returns the element that gives the maximum value with respect to the
1958     /// specified comparison function.
1959     ///
1960     /// If several elements are equally maximum, the last element is
1961     /// returned. If the iterator is empty, [`None`] is returned.
1962     ///
1963     /// [`None`]: ../../std/option/enum.Option.html#variant.None
1964     ///
1965     /// # Examples
1966     ///
1967     /// ```
1968     /// let a = [-3_i32, 0, 1, 5, -10];
1969     /// assert_eq!(*a.iter().max_by(|x, y| x.cmp(y)).unwrap(), 5);
1970     /// ```
1971     #[inline]
1972     #[stable(feature = "iter_max_by", since = "1.15.0")]
1973     fn max_by<F>(self, mut compare: F) -> Option<Self::Item>
1974         where Self: Sized, F: FnMut(&Self::Item, &Self::Item) -> Ordering,
1975     {
1976         select_fold1(self,
1977                      |_| (),
1978                      // switch to y even if it is only equal, to preserve
1979                      // stability.
1980                      |_, x, _, y| Ordering::Greater != compare(x, y))
1981             .map(|(_, x)| x)
1982     }
1983
1984     /// Returns the element that gives the minimum value from the
1985     /// specified function.
1986     ///
1987     /// If several elements are equally minimum, the first element is
1988     /// returned. If the iterator is empty, [`None`] is returned.
1989     ///
1990     /// [`None`]: ../../std/option/enum.Option.html#variant.None
1991     ///
1992     /// # Examples
1993     ///
1994     /// ```
1995     /// let a = [-3_i32, 0, 1, 5, -10];
1996     /// assert_eq!(*a.iter().min_by_key(|x| x.abs()).unwrap(), 0);
1997     /// ```
1998     #[stable(feature = "iter_cmp_by_key", since = "1.6.0")]
1999     fn min_by_key<B: Ord, F>(self, f: F) -> Option<Self::Item>
2000         where Self: Sized, F: FnMut(&Self::Item) -> B,
2001     {
2002         select_fold1(self,
2003                      f,
2004                      // only switch to y if it is strictly smaller, to
2005                      // preserve stability.
2006                      |x_p, _, y_p, _| x_p > y_p)
2007             .map(|(_, x)| x)
2008     }
2009
2010     /// Returns the element that gives the minimum value with respect to the
2011     /// specified comparison function.
2012     ///
2013     /// If several elements are equally minimum, the first element is
2014     /// returned. If the iterator is empty, [`None`] is returned.
2015     ///
2016     /// [`None`]: ../../std/option/enum.Option.html#variant.None
2017     ///
2018     /// # Examples
2019     ///
2020     /// ```
2021     /// let a = [-3_i32, 0, 1, 5, -10];
2022     /// assert_eq!(*a.iter().min_by(|x, y| x.cmp(y)).unwrap(), -10);
2023     /// ```
2024     #[inline]
2025     #[stable(feature = "iter_min_by", since = "1.15.0")]
2026     fn min_by<F>(self, mut compare: F) -> Option<Self::Item>
2027         where Self: Sized, F: FnMut(&Self::Item, &Self::Item) -> Ordering,
2028     {
2029         select_fold1(self,
2030                      |_| (),
2031                      // switch to y even if it is strictly smaller, to
2032                      // preserve stability.
2033                      |_, x, _, y| Ordering::Greater == compare(x, y))
2034             .map(|(_, x)| x)
2035     }
2036
2037
2038     /// Reverses an iterator's direction.
2039     ///
2040     /// Usually, iterators iterate from left to right. After using `rev()`,
2041     /// an iterator will instead iterate from right to left.
2042     ///
2043     /// This is only possible if the iterator has an end, so `rev()` only
2044     /// works on [`DoubleEndedIterator`]s.
2045     ///
2046     /// [`DoubleEndedIterator`]: trait.DoubleEndedIterator.html
2047     ///
2048     /// # Examples
2049     ///
2050     /// ```
2051     /// let a = [1, 2, 3];
2052     ///
2053     /// let mut iter = a.iter().rev();
2054     ///
2055     /// assert_eq!(iter.next(), Some(&3));
2056     /// assert_eq!(iter.next(), Some(&2));
2057     /// assert_eq!(iter.next(), Some(&1));
2058     ///
2059     /// assert_eq!(iter.next(), None);
2060     /// ```
2061     #[inline]
2062     #[stable(feature = "rust1", since = "1.0.0")]
2063     fn rev(self) -> Rev<Self> where Self: Sized + DoubleEndedIterator {
2064         Rev{iter: self}
2065     }
2066
2067     /// Converts an iterator of pairs into a pair of containers.
2068     ///
2069     /// `unzip()` consumes an entire iterator of pairs, producing two
2070     /// collections: one from the left elements of the pairs, and one
2071     /// from the right elements.
2072     ///
2073     /// This function is, in some sense, the opposite of [`zip`].
2074     ///
2075     /// [`zip`]: #method.zip
2076     ///
2077     /// # Examples
2078     ///
2079     /// Basic usage:
2080     ///
2081     /// ```
2082     /// let a = [(1, 2), (3, 4)];
2083     ///
2084     /// let (left, right): (Vec<_>, Vec<_>) = a.iter().cloned().unzip();
2085     ///
2086     /// assert_eq!(left, [1, 3]);
2087     /// assert_eq!(right, [2, 4]);
2088     /// ```
2089     #[stable(feature = "rust1", since = "1.0.0")]
2090     fn unzip<A, B, FromA, FromB>(self) -> (FromA, FromB) where
2091         FromA: Default + Extend<A>,
2092         FromB: Default + Extend<B>,
2093         Self: Sized + Iterator<Item=(A, B)>,
2094     {
2095         let mut ts: FromA = Default::default();
2096         let mut us: FromB = Default::default();
2097
2098         self.for_each(|(t, u)| {
2099             ts.extend(Some(t));
2100             us.extend(Some(u));
2101         });
2102
2103         (ts, us)
2104     }
2105
2106     /// Creates an iterator which [`clone`]s all of its elements.
2107     ///
2108     /// This is useful when you have an iterator over `&T`, but you need an
2109     /// iterator over `T`.
2110     ///
2111     /// [`clone`]: ../../std/clone/trait.Clone.html#tymethod.clone
2112     ///
2113     /// # Examples
2114     ///
2115     /// Basic usage:
2116     ///
2117     /// ```
2118     /// let a = [1, 2, 3];
2119     ///
2120     /// let v_cloned: Vec<_> = a.iter().cloned().collect();
2121     ///
2122     /// // cloned is the same as .map(|&x| x), for integers
2123     /// let v_map: Vec<_> = a.iter().map(|&x| x).collect();
2124     ///
2125     /// assert_eq!(v_cloned, vec![1, 2, 3]);
2126     /// assert_eq!(v_map, vec![1, 2, 3]);
2127     /// ```
2128     #[stable(feature = "rust1", since = "1.0.0")]
2129     fn cloned<'a, T: 'a>(self) -> Cloned<Self>
2130         where Self: Sized + Iterator<Item=&'a T>, T: Clone
2131     {
2132         Cloned { it: self }
2133     }
2134
2135     /// Repeats an iterator endlessly.
2136     ///
2137     /// Instead of stopping at [`None`], the iterator will instead start again,
2138     /// from the beginning. After iterating again, it will start at the
2139     /// beginning again. And again. And again. Forever.
2140     ///
2141     /// [`None`]: ../../std/option/enum.Option.html#variant.None
2142     ///
2143     /// # Examples
2144     ///
2145     /// Basic usage:
2146     ///
2147     /// ```
2148     /// let a = [1, 2, 3];
2149     ///
2150     /// let mut it = a.iter().cycle();
2151     ///
2152     /// assert_eq!(it.next(), Some(&1));
2153     /// assert_eq!(it.next(), Some(&2));
2154     /// assert_eq!(it.next(), Some(&3));
2155     /// assert_eq!(it.next(), Some(&1));
2156     /// assert_eq!(it.next(), Some(&2));
2157     /// assert_eq!(it.next(), Some(&3));
2158     /// assert_eq!(it.next(), Some(&1));
2159     /// ```
2160     #[stable(feature = "rust1", since = "1.0.0")]
2161     #[inline]
2162     fn cycle(self) -> Cycle<Self> where Self: Sized + Clone {
2163         Cycle{orig: self.clone(), iter: self}
2164     }
2165
2166     /// Sums the elements of an iterator.
2167     ///
2168     /// Takes each element, adds them together, and returns the result.
2169     ///
2170     /// An empty iterator returns the zero value of the type.
2171     ///
2172     /// # Panics
2173     ///
2174     /// When calling `sum()` and a primitive integer type is being returned, this
2175     /// method will panic if the computation overflows and debug assertions are
2176     /// enabled.
2177     ///
2178     /// # Examples
2179     ///
2180     /// Basic usage:
2181     ///
2182     /// ```
2183     /// let a = [1, 2, 3];
2184     /// let sum: i32 = a.iter().sum();
2185     ///
2186     /// assert_eq!(sum, 6);
2187     /// ```
2188     #[stable(feature = "iter_arith", since = "1.11.0")]
2189     fn sum<S>(self) -> S
2190         where Self: Sized,
2191               S: Sum<Self::Item>,
2192     {
2193         Sum::sum(self)
2194     }
2195
2196     /// Iterates over the entire iterator, multiplying all the elements
2197     ///
2198     /// An empty iterator returns the one value of the type.
2199     ///
2200     /// # Panics
2201     ///
2202     /// When calling `product()` and a primitive integer type is being returned,
2203     /// method will panic if the computation overflows and debug assertions are
2204     /// enabled.
2205     ///
2206     /// # Examples
2207     ///
2208     /// ```
2209     /// fn factorial(n: u32) -> u32 {
2210     ///     (1..).take_while(|&i| i <= n).product()
2211     /// }
2212     /// assert_eq!(factorial(0), 1);
2213     /// assert_eq!(factorial(1), 1);
2214     /// assert_eq!(factorial(5), 120);
2215     /// ```
2216     #[stable(feature = "iter_arith", since = "1.11.0")]
2217     fn product<P>(self) -> P
2218         where Self: Sized,
2219               P: Product<Self::Item>,
2220     {
2221         Product::product(self)
2222     }
2223
2224     /// Lexicographically compares the elements of this `Iterator` with those
2225     /// of another.
2226     #[stable(feature = "iter_order", since = "1.5.0")]
2227     fn cmp<I>(mut self, other: I) -> Ordering where
2228         I: IntoIterator<Item = Self::Item>,
2229         Self::Item: Ord,
2230         Self: Sized,
2231     {
2232         let mut other = other.into_iter();
2233
2234         loop {
2235             let x = match self.next() {
2236                 None => if other.next().is_none() {
2237                     return Ordering::Equal
2238                 } else {
2239                     return Ordering::Less
2240                 },
2241                 Some(val) => val,
2242             };
2243
2244             let y = match other.next() {
2245                 None => return Ordering::Greater,
2246                 Some(val) => val,
2247             };
2248
2249             match x.cmp(&y) {
2250                 Ordering::Equal => (),
2251                 non_eq => return non_eq,
2252             }
2253         }
2254     }
2255
2256     /// Lexicographically compares the elements of this `Iterator` with those
2257     /// of another.
2258     #[stable(feature = "iter_order", since = "1.5.0")]
2259     fn partial_cmp<I>(mut self, other: I) -> Option<Ordering> where
2260         I: IntoIterator,
2261         Self::Item: PartialOrd<I::Item>,
2262         Self: Sized,
2263     {
2264         let mut other = other.into_iter();
2265
2266         loop {
2267             let x = match self.next() {
2268                 None => if other.next().is_none() {
2269                     return Some(Ordering::Equal)
2270                 } else {
2271                     return Some(Ordering::Less)
2272                 },
2273                 Some(val) => val,
2274             };
2275
2276             let y = match other.next() {
2277                 None => return Some(Ordering::Greater),
2278                 Some(val) => val,
2279             };
2280
2281             match x.partial_cmp(&y) {
2282                 Some(Ordering::Equal) => (),
2283                 non_eq => return non_eq,
2284             }
2285         }
2286     }
2287
2288     /// Determines if the elements of this `Iterator` are equal to those of
2289     /// another.
2290     #[stable(feature = "iter_order", since = "1.5.0")]
2291     fn eq<I>(mut self, other: I) -> bool where
2292         I: IntoIterator,
2293         Self::Item: PartialEq<I::Item>,
2294         Self: Sized,
2295     {
2296         let mut other = other.into_iter();
2297
2298         loop {
2299             let x = match self.next() {
2300                 None => return other.next().is_none(),
2301                 Some(val) => val,
2302             };
2303
2304             let y = match other.next() {
2305                 None => return false,
2306                 Some(val) => val,
2307             };
2308
2309             if x != y { return false }
2310         }
2311     }
2312
2313     /// Determines if the elements of this `Iterator` are unequal to those of
2314     /// another.
2315     #[stable(feature = "iter_order", since = "1.5.0")]
2316     fn ne<I>(mut self, other: I) -> bool where
2317         I: IntoIterator,
2318         Self::Item: PartialEq<I::Item>,
2319         Self: Sized,
2320     {
2321         let mut other = other.into_iter();
2322
2323         loop {
2324             let x = match self.next() {
2325                 None => return other.next().is_some(),
2326                 Some(val) => val,
2327             };
2328
2329             let y = match other.next() {
2330                 None => return true,
2331                 Some(val) => val,
2332             };
2333
2334             if x != y { return true }
2335         }
2336     }
2337
2338     /// Determines if the elements of this `Iterator` are lexicographically
2339     /// less than those of another.
2340     #[stable(feature = "iter_order", since = "1.5.0")]
2341     fn lt<I>(mut self, other: I) -> bool where
2342         I: IntoIterator,
2343         Self::Item: PartialOrd<I::Item>,
2344         Self: Sized,
2345     {
2346         let mut other = other.into_iter();
2347
2348         loop {
2349             let x = match self.next() {
2350                 None => return other.next().is_some(),
2351                 Some(val) => val,
2352             };
2353
2354             let y = match other.next() {
2355                 None => return false,
2356                 Some(val) => val,
2357             };
2358
2359             match x.partial_cmp(&y) {
2360                 Some(Ordering::Less) => return true,
2361                 Some(Ordering::Equal) => (),
2362                 Some(Ordering::Greater) => return false,
2363                 None => return false,
2364             }
2365         }
2366     }
2367
2368     /// Determines if the elements of this `Iterator` are lexicographically
2369     /// less or equal to those of another.
2370     #[stable(feature = "iter_order", since = "1.5.0")]
2371     fn le<I>(mut self, other: I) -> bool where
2372         I: IntoIterator,
2373         Self::Item: PartialOrd<I::Item>,
2374         Self: Sized,
2375     {
2376         let mut other = other.into_iter();
2377
2378         loop {
2379             let x = match self.next() {
2380                 None => { other.next(); return true; },
2381                 Some(val) => val,
2382             };
2383
2384             let y = match other.next() {
2385                 None => return false,
2386                 Some(val) => val,
2387             };
2388
2389             match x.partial_cmp(&y) {
2390                 Some(Ordering::Less) => return true,
2391                 Some(Ordering::Equal) => (),
2392                 Some(Ordering::Greater) => return false,
2393                 None => return false,
2394             }
2395         }
2396     }
2397
2398     /// Determines if the elements of this `Iterator` are lexicographically
2399     /// greater than those of another.
2400     #[stable(feature = "iter_order", since = "1.5.0")]
2401     fn gt<I>(mut self, other: I) -> bool where
2402         I: IntoIterator,
2403         Self::Item: PartialOrd<I::Item>,
2404         Self: Sized,
2405     {
2406         let mut other = other.into_iter();
2407
2408         loop {
2409             let x = match self.next() {
2410                 None => { other.next(); return false; },
2411                 Some(val) => val,
2412             };
2413
2414             let y = match other.next() {
2415                 None => return true,
2416                 Some(val) => val,
2417             };
2418
2419             match x.partial_cmp(&y) {
2420                 Some(Ordering::Less) => return false,
2421                 Some(Ordering::Equal) => (),
2422                 Some(Ordering::Greater) => return true,
2423                 None => return false,
2424             }
2425         }
2426     }
2427
2428     /// Determines if the elements of this `Iterator` are lexicographically
2429     /// greater than or equal to those of another.
2430     #[stable(feature = "iter_order", since = "1.5.0")]
2431     fn ge<I>(mut self, other: I) -> bool where
2432         I: IntoIterator,
2433         Self::Item: PartialOrd<I::Item>,
2434         Self: Sized,
2435     {
2436         let mut other = other.into_iter();
2437
2438         loop {
2439             let x = match self.next() {
2440                 None => return other.next().is_none(),
2441                 Some(val) => val,
2442             };
2443
2444             let y = match other.next() {
2445                 None => return true,
2446                 Some(val) => val,
2447             };
2448
2449             match x.partial_cmp(&y) {
2450                 Some(Ordering::Less) => return false,
2451                 Some(Ordering::Equal) => (),
2452                 Some(Ordering::Greater) => return true,
2453                 None => return false,
2454             }
2455         }
2456     }
2457 }
2458
2459 /// Select an element from an iterator based on the given "projection"
2460 /// and "comparison" function.
2461 ///
2462 /// This is an idiosyncratic helper to try to factor out the
2463 /// commonalities of {max,min}{,_by}. In particular, this avoids
2464 /// having to implement optimizations several times.
2465 #[inline]
2466 fn select_fold1<I, B, FProj, FCmp>(mut it: I,
2467                                    mut f_proj: FProj,
2468                                    mut f_cmp: FCmp) -> Option<(B, I::Item)>
2469     where I: Iterator,
2470           FProj: FnMut(&I::Item) -> B,
2471           FCmp: FnMut(&B, &I::Item, &B, &I::Item) -> bool
2472 {
2473     // start with the first element as our selection. This avoids
2474     // having to use `Option`s inside the loop, translating to a
2475     // sizeable performance gain (6x in one case).
2476     it.next().map(|first| {
2477         let first_p = f_proj(&first);
2478
2479         it.fold((first_p, first), |(sel_p, sel), x| {
2480             let x_p = f_proj(&x);
2481             if f_cmp(&sel_p, &sel, &x_p, &x) {
2482                 (x_p, x)
2483             } else {
2484                 (sel_p, sel)
2485             }
2486         })
2487     })
2488 }
2489
2490 #[stable(feature = "rust1", since = "1.0.0")]
2491 impl<'a, I: Iterator + ?Sized> Iterator for &'a mut I {
2492     type Item = I::Item;
2493     fn next(&mut self) -> Option<I::Item> { (**self).next() }
2494     fn size_hint(&self) -> (usize, Option<usize>) { (**self).size_hint() }
2495     fn nth(&mut self, n: usize) -> Option<Self::Item> {
2496         (**self).nth(n)
2497     }
2498 }