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

◆ push() [2/2]

template<typename T, typename Container = fl::deque<T>>
void fl::queue< T, Container >::push ( value_type && value)
inline

Add an element to the back of the queue (move version)

Parameters
valueElement to move and add

Definition at line 110 of file queue.h.

110 {
111 mContainer.push_back(fl::move(value));
112 }
Container mContainer
Definition queue.h:27
A first-in, first-out (FIFO) queue container adapter.
Definition queue.h:18

References mContainer, and fl::move().

+ Here is the call graph for this function: