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

◆ swap() [6/11]

template<typename T, typename Container>
void fl::swap ( queue< T, Container > & lhs,
queue< T, Container > & rhs )

Swap two queues.

Template Parameters
TElement type
ContainerContainer type
Parameters
lhsFirst queue
rhsSecond queue

Definition at line 199 of file queue.h.

199 {
200 lhs.swap(rhs);
201}
void swap(queue &other)
Swap the contents with another queue.
Definition queue.h:129

References fl::queue< T, Container >::swap().

+ Here is the call graph for this function: