collected 0.1.0

Summation, product, maximum and more special collectors for Rust iterators.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Rust Collected

Summation, product, maximum and more special collectors for Rust iterators.

## Example

```rust
use collected::MaxCollector;

fn main() {
    let max: MaxCollector<usize> = (1..100).collect();
    assert_eq!(max.unwrap(), 99);
}
```

## License

MIT License. See [license file](LICENSE.txt).