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 109 of file queue.h.

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

References mContainer, fl::fl::move(), and fl::type_rank< T >::value.

+ Here is the call graph for this function: