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

◆ emplace()

template<typename T, typename Compare = fl::less<T>, typename VectorT = vector<T>>
template<typename... Args>
void fl::PriorityQueue< T, Compare, VectorT >::emplace ( Args &&... args)
inline

Definition at line 96 of file priority_queue.h.

96 {
97 _data.emplace_back(fl::forward<Args>(args)...);
98 push_heap(_data.begin(), _data.end(), _comp);
99 }
void push_heap(Iterator first, Iterator last, Compare comp)

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

+ Here is the call graph for this function: