devela::_dep::itertools

Type Alias Merge

pub type Merge<I, J> = MergeBy<I, J, MergeLte>;
Available on crate feature dep_itertools only.
Expand description

An iterator adaptor that merges the two base iterators in ascending order. If both base iterators are sorted (ascending), the result is sorted.

Iterator element type is I::Item.

See .merge() for more information.

Aliased Typeยง

struct Merge<I, J> { /* private fields */ }