libstdc++
GNU C++ library
Loading...
Searching...
No Matches

◆ find_if_not() [1/4]

template<class _ExecutionPolicy, class _ForwardIterator, class _Predicate>
__pstl::__internal::__enable_if_execution_policy< _ExecutionPolicy, _ForwardIterator > std::find_if_not ( _ExecutionPolicy && __exec,
_ForwardIterator __first,
_ForwardIterator __last,
_Predicate __pred )

Definition at line 88 of file glue_algorithm_impl.h.

89{
90 return std::find_if(std::forward<_ExecutionPolicy>(__exec), __first, __last, std::not_fn(__pred));
91}
constexpr _Tp && forward(typename std::remove_reference< _Tp >::type &__t) noexcept
Forward an lvalue.
Definition move.h:72
constexpr _IIter find_if(_IIter, _IIter, _Predicate)

References find_if(), find_if_not(), and forward().

Here is the call graph for this function: