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

◆ operator=()

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

Definition at line 246 of file vector.h.

246 { // cppcheck-suppress operatorEqVarError
247 if (this != &other) {
248 assign(other.begin(), other.end());
249 }
250 return *this;
251 }
void assign(const T *values, size_t count)
Definition vector.h:470
iterator end()
Definition vector.h:348
iterator begin()
Definition vector.h:346