|  | Home | Libraries | People | FAQ | More | 
boost::algorithm::is_strictly_decreasing
// In header: <boost/algorithm/cxx11/is_sorted.hpp> template<typename ForwardIterator> bool is_strictly_decreasing(ForwardIterator first, ForwardIterator last);
| ![[Note]](../../../../../../doc/src/images/note.png) | Note | 
|---|---|
| This function will return false for sequences that contain items that compare equal. If that is not what you intended, you should use is_decreasing instead. | 
| Parameters: | 
 | ||||
| Returns: | true if the entire sequence is strictly decreasing; i.e, each item is less than the previous one |