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

◆ pop()

template<typename T, typename Container = fl::deque<T>>
void fl::queue< T, Container >::pop ( )
inline

Remove the front element from the queue.

Note
Undefined behavior if queue is empty

Definition at line 123 of file queue.h.

123 {
124 mContainer.pop_front();
125 }
Container mContainer
Definition queue.h:26

References mContainer.