Expand description
Functions that compare adjacent iterator elements.
Structs§
- Delta
Directions - An iterator that generates the
Ordering
s of adjacent elements of a given iterator.
Functions§
- delta_
directions - Returns an iterator that generates the
Ordering
s of adjacent pairs of elements of a given iterator. - is_
strictly_ ascending - Determines whether each element of an iterator is greater than the preceding one.
- is_
strictly_ descending - Determines whether each element of an iterator is less than the preceding one.
- is_
strictly_ zigzagging - Determines whether the sequence strictly zigzags.
- is_
weakly_ ascending - Determines whether each element of an iterator is greater than or equal to the preceding one.
- is_
weakly_ descending - Determines whether each element of an iterator is less than or equal to the preceding one.
- is_
weakly_ zigzagging - Determines whether the sequence weakly zigzags.