Type Alias itertools::groupbylazy::GroupBy

source ·
pub type GroupBy<K, I, F> = ChunkBy<K, I, F>;
👎Deprecated since 0.13.0: Use ChunkBy instead
Expand description

See ChunkBy.

Aliased Type§

struct GroupBy<K, I, F> {
    inner: RefCell<GroupInner<K, I, F>>,
    index: Cell<usize>,
}

Fields§

§inner: RefCell<GroupInner<K, I, F>>§index: Cell<usize>