FastLED 3.9.15
Loading...
Searching...
No Matches

◆ pop_heap() [1/2]

template<typename Iterator>
void fl::pop_heap ( Iterator first,
Iterator last )

Definition at line 67 of file priority_queue.h.

67 {
68 using value_type = typename fl::remove_reference<decltype(*first)>::type;
69 pop_heap(first, last, [](const value_type &a, const value_type &b) { return a < b; });
70}
void pop_heap(Iterator first, Iterator last, Compare comp)

References pop_heap().

+ Here is the call graph for this function: