collected 0.4.0

Summation, product, maximum and more special collectors for Rust iterators.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub use itertools::Itertools;
pub use min_max_heap::MinMaxHeap;
pub use std::{
    borrow::Borrow,
    cmp::Reverse,
    collections::{hash_map, BTreeSet, BinaryHeap, HashMap, HashSet, VecDeque},
    hash::Hash,
    iter::{self, Extend, FromIterator, Product, Sum},
    marker::PhantomData,
    mem::{self, MaybeUninit},
    ops::{Add, Mul},
};