#ifndef SPROUT_ALGORITHM_IS_INCREASING_HPP #define SPROUT_ALGORITHM_IS_INCREASING_HPP #include #include #include #include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT namespace sprout { // // is_increasing // template inline SPROUT_CONSTEXPR bool is_increasing(ForwardIterator first, ForwardIterator last) { return sprout::is_sorted( first, last, NS_SSCRISK_CEL_OR_SPROUT::less::value_type>() ); } } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_IS_INCREASING_HPP