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

◆ is_heap() [1/7]

template<class _ExecutionPolicy, class _RandomAccessIterator>
__pstl::__internal::__enable_if_execution_policy< _ExecutionPolicy, bool > std::is_heap ( _ExecutionPolicy && __exec,
_RandomAccessIterator __first,
_RandomAccessIterator __last )

Definition at line 995 of file glue_algorithm_impl.h.

996{
998 return std::is_heap(std::forward<_ExecutionPolicy>(__exec), __first, __last, std::less<_InputType>());
999}
constexpr _Tp && forward(typename std::remove_reference< _Tp >::type &__t) noexcept
Forward an lvalue.
Definition move.h:72
constexpr bool is_heap(_RAIter, _RAIter)
Traits class for iterators.
One of the comparison functors.

References forward(), and is_heap().

Here is the call graph for this function: