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

◆ push() [2/2]

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

Definition at line 90 of file priority_queue.h.

90 {
91 _data.push_back(fl::move(value));
92 push_heap(_data.begin(), _data.end(), _comp);
93 }
void push_heap(Iterator first, Iterator last, Compare comp)

References _comp, _data, fl::fl::move(), fl::push_heap(), and fl::type_rank< T >::value.

+ Here is the call graph for this function: