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

◆ operator<() [2/2]

bool fl::span< T, Extent >::operator< ( const span< T, Extent > & other) const
inline

Definition at line 524 of file span.h.

524 {
525 for (fl::size i = 0; i < Extent; ++i) {
526 if (mData[i] < other.mData[i]) return true;
527 if (other.mData[i] < mData[i]) return false;
528 }
529 return false; // Equal when all elements are equal
530 }
T * mData
Definition span.h:545