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

391 { // cppcheck-suppress operatorEqVarError
392 if (this != &other) {
394 assign(other.begin(), other.end());
395 }
396 return *this;
397 }
Allocator mAlloc
Definition vector.h:350
void assign(InputIt begin, InputIt end)
Definition vector.h:522
iterator begin()
Definition vector.h:584
iterator end()
Definition vector.h:590