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

116 {
117 mContainer.pop_front();
118 }
Container mContainer
Definition queue.h:27

References mContainer.