Collected
Collection types that takes the maximum, the summation and more from iterators in Rust.
Usage
Every collection type in the crate implements FromIterator, Extend and Default traits.
They can be built from collect(), and can be updated by extend().
For example, it makes it easy to compute maximum and minimum value from an iterator
using unzip() in single step.
use ;
let : = vec!
.into_iter
.map
.unzip;
assert_eq!;
assert_eq!;
License
MIT License. See license file.