Crate iterator_sorted

Source
Expand description

Provides stable functions for checking that an Iterator is sorted.

Functionsยง

is_sorted
Checks if an iterator yields ordered values.
is_sorted_by
Checks if an iterator yields ordered values based on a given comparator.
is_unique_sorted
Checks if an iterator yields ordered and unique values.
is_unique_sorted_by
Checks if an iterator yields ordered and unique values based on a given comparator.