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 737 of file deque.h.

737 {
738 if (mSize != other.mSize) {
739 return false;
740 }
741 for (fl::size i = 0; i < mSize; ++i) {
742 if ((*this)[i] != other[i]) {
743 return false;
744 }
745 }
746 return true;
747 }
fl::size mSize
Definition deque.h:18