Overload of c_pop_heap() for performing a pop operation on a heap using a comp other than operator<.
Declared in <absl/algorithm/container.h>
template<
typename RandomAccessContainer,
typename LessThan>
constexpr
void
c_pop_heap(
RandomAccessContainer& sequence,
LessThan&& comp);
| Name | Description |
|---|---|
| sequence | The heap container to pop from. |
| comp | The comparison used to order the heap. |