Type Definition itertools::structs::KMerge[][src]

#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]
type KMerge<I> = KMergeBy<I, KMergeByLt>;
Expand description

An iterator adaptor that merges an abitrary number of base iterators in ascending order. If all base iterators are sorted (ascending), the result is sorted.

Iterator element type is I::Item.

See .kmerge() for more information.