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

◆ unique() [2/7]

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

Definition at line 472 of file glue_algorithm_impl.h.

473{
474 auto __dispatch_tag = __pstl::__internal::__select_backend(__exec, __first);
475
476 return __pstl::__internal::__pattern_unique(__dispatch_tag, std::forward<_ExecutionPolicy>(__exec), __first, __last,
477 __pred);
478}
constexpr _Tp && forward(typename std::remove_reference< _Tp >::type &__t) noexcept
Forward an lvalue.
Definition move.h:72
_ForwardIterator __pattern_unique(_Tag, _ExecutionPolicy &&, _ForwardIterator, _ForwardIterator, _BinaryPredicate) noexcept
__serial_tag< std::false_type > __select_backend(__pstl::execution::sequenced_policy, _IteratorTypes &&...)

References __pstl::__internal::__pattern_unique(), __pstl::__internal::__select_backend(), forward(), and unique().

Here is the call graph for this function: