|  | Home | Libraries | People | FAQ | More | 
boost::algorithm::is_increasing
// In header: <boost/algorithm/cxx11/is_sorted.hpp> template<typename ForwardIterator> bool is_increasing(ForwardIterator first, ForwardIterator last);
– Range based versions of the C++11 functions
| ![[Note]](../../../../doc/src/images/note.png) | Note | 
|---|---|
| This function will return true for sequences that contain items that compare equal. If that is not what you intended, you should use is_strictly_increasing instead. | 
| Parameters: | 
 | ||||
| Returns: | true if the entire sequence is increasing; i.e, each item is greater than or equal to the previous one. |