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

◆ operator==()

template<typename T, typename Container = fl::deque<T>>
bool fl::queue< T, Container >::operator== ( const queue< T, Container > & other) const
inline

Equality comparison.

Parameters
otherQueue to compare with
Returns
true if both queues contain the same elements in the same order

Definition at line 153 of file queue.h.

153 {
154 return mContainer == other.mContainer;
155 }
Container mContainer
Definition queue.h:26
A first-in, first-out (FIFO) queue container adapter.
Definition queue.h:17

References queue(), and mContainer.

+ Here is the call graph for this function: