Summation, product, maximum and more special collectors for Rust iterators.
```rust use collected::MaxCollector;
fn main() { let max: MaxCollector = (1..100).collect(); assert_eq!(max.unwrap(), 99); } ```
MIT License. See license file.