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

◆ operator=()

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

Definition at line 347 of file vector.h.

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