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

◆ find_if() [1/4]

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

Definition at line 78 of file glue_algorithm_impl.h.

79{
80 auto __dispatch_tag = __pstl::__internal::__select_backend(__exec, __first);
81
82 return __pstl::__internal::__pattern_find_if(__dispatch_tag, std::forward<_ExecutionPolicy>(__exec), __first,
83 __last, __pred);
84}
constexpr _Tp && forward(typename std::remove_reference< _Tp >::type &__t) noexcept
Forward an lvalue.
Definition move.h:72
__serial_tag< std::false_type > __select_backend(__pstl::execution::sequenced_policy, _IteratorTypes &&...)
_ForwardIterator __pattern_find_if(_Tag, _ExecutionPolicy &&, _ForwardIterator, _ForwardIterator, _Predicate) noexcept

References __pstl::__internal::__pattern_find_if(), __pstl::__internal::__select_backend(), find_if(), and forward().

Here is the call graph for this function: