.. _sprout-algorithm-find_if: ############################################################################### find_if ############################################################################### Interface ======================================== .. sourcecode:: c++ template inline SPROUT_CONSTEXPR InputIterator find_if(InputIterator first, InputIterator last, Predicate pred); Returns ======================================== | The first iterator i in the range [first,last) for which the following corresponding conditions hold: ``pred(*i)``. | Returns last if no such iterator is found. Examples ======================================== .. sourcecode:: c++ #include #include #include #include using namespace sprout; SPROUT_STATIC_CONSTEXPR auto input = array{{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}; SPROUT_STATIC_CONSTEXPR auto result = sprout::find_if(begin(input), end(input), bind2nd(greater<>(), 7)); static_assert(result != end(input), "found a element greater than 7 from input."); static_assert(result - begin(input1) == 7, "a found position is 7."); Complexity ======================================== | At most ``last - first`` applications of the predicate. | Recursive function invocations in *O(logN)* (logarithmic) depth. Header ======================================== | ``sprout/algorithm/find_if.hpp`` | Convenience header: ``sprout/algorithm.hpp``