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

◆ operator==()

template<typename T, size_t N>
bool fl::operator== ( const array< T, N > & lhs,
const array< T, N > & rhs )

Definition at line 125 of file array.h.

125 {
126 // return std::equal(lhs.begin(), lhs.end(), rhs.begin());
127 for (size_t i = 0; i < N; ++i) {
128 if (lhs[i] != rhs[i]) {
129 return false;
130 }
131 }
132}