1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! Extension for the [`Iterator`] trait and
//! [`Collector`]s for common operations in that trait.
//!
//! This module also includes most "terminal" operations such as [`fold()`], [`any()`]
//! and [`find()`], except some like [`min()`], [`max()`] and [`sum()`]
//! which are in more appropriate modules.
//!
//! This module corresponds to [`std::iter`].
//!
//! [`Collector`]: crate::collector::Collector
//! [`fold()`]: Iterator::fold
//! [`any()`]: Iterator::any
//! [`find()`]: Iterator::find
//! [`min()`]: Iterator::min
//! [`max()`]: Iterator::max
//! [`sum()`]: Iterator::sum
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;