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

Less-than comparison (lexicographic)

Parameters
otherQueue to compare with
Returns
true if this queue is lexicographically less than other

Definition at line 167 of file queue.h.

167 {
168 return mContainer < other.mContainer;
169 }
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: