reductor 0.0.12

Generic abstractions for combining and nesting reduction patterns for iterables.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Standard implementations of [`Reductor`](crate::Reductor).

mod count;
pub use self::count::{Count, CountNonZero};

mod sum;
pub use self::sum::Sum;

mod product;
pub use self::product::Product;

mod min_max;
pub use self::min_max::{Max, MaxF, Min, MinF, MinMax, MinMaxF};

mod mean;
pub use self::mean::Mean;

mod state;