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

◆ push()

template<typename T, typename Compare = fl::less<T>, typename VectorT = fl::HeapVector<T>>
void fl::PriorityQueue< T, Compare, VectorT >::push ( const T & value)
inline

Definition at line 76 of file priority_queue.h.

76 {
77 _data.push_back(value);
78 push_heap(_data.begin(), _data.end(), _comp);
79 }
void push_heap(Iterator first, Iterator last, Compare comp)

References _comp, _data, and fl::push_heap().

+ Here is the call graph for this function: