constexpr auto is_sorted(ForwardIt first, ForwardIt last) -> bool
Checks if the elements in range [first, last) are sorted in non-descending order.
Definition is_sorted.hpp:13
constexpr auto is_sorted_until(ForwardIt first, ForwardIt last, Compare comp) -> ForwardIt
Definition is_sorted_until.hpp:11