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

◆ operator==() [1/14]

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

Definition at line 165 of file array.h.

165 {
166 // return std::equal(lhs.begin(), lhs.end(), rhs.begin());
167 for (fl::size i = 0; i < N; ++i) {
168 if (lhs[i] != rhs[i]) {
169 return false;
170 }
171 }
172 return true;
173}

References FL_NOEXCEPT.