Type Definition itertools::structs::Coalesce [−][src]
#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]type Coalesce<I, F> = CoalesceBy<I, F, <I as Iterator>::Item>;
An iterator adaptor that may join together adjacent elements.
See .coalesce()
for more information.