Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext

Function template is_sorted

boost::algorithm::is_sorted

Synopsis

// In header: <boost/algorithm/cxx11/is_sorted.hpp>


template<typename R> BOOST_CXX14_CONSTEXPR bool is_sorted(const R & range);

Description

Parameters:

range

The range to be tested.

Returns:

whether or not the entire range R is sorted


PrevUpHomeNext