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 345 of file vector.h.

346 { // cppcheck-suppress operatorEqVarError
347 if (this != &other) {
348 assign(other.begin(), other.end());
349 }
350 return *this;
351 }
void assign(InputIt begin, InputIt end)
Definition vector.h:413
iterator end()
Definition vector.h:466
iterator begin()
Definition vector.h:464