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

◆ push_heap() [1/2]

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

Definition at line 52 of file priority_queue.h.

52 {
53 using value_type = typename fl::remove_reference<decltype(*first)>::type;
54 push_heap(first, last, [](const value_type &a, const value_type &b) { return a < b; });
55}
void push_heap(Iterator first, Iterator last, Compare comp)

References push_heap().

+ Here is the call graph for this function: