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

◆ operator<()

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

Definition at line 753 of file deque.h.

753 {
755 for (fl::size i = 0; i < min_size; ++i) {
756 if ((*this)[i] < other[i]) {
757 return true;
758 }
759 if ((*this)[i] > other[i]) {
760 return false;
761 }
762 }
763 return mSize < other.mSize;
764 }
fl::size mSize
Definition deque.h:18