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

◆ operator==()

template<typename T, typename Allocator = fl::allocator<T>>
bool fl::HeapVector< T, Allocator >::operator== ( const HeapVector< T > & other) const
inline

Definition at line 650 of file vector.h.

650 {
651 if (size() != other.size()) {
652 return false;
653 }
654 for (size_t i = 0; i < size(); ++i) {
655 if (mArray[i] != other.mArray[i]) {
656 return false;
657 }
658 }
659 return true;
660 }