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

◆ HeapVector() [2/4]

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

Definition at line 339 of file vector.h.

339 {
340 reserve(other.size());
341 assign(other.begin(), other.end());
342 }
void assign(InputIt begin, InputIt end)
Definition vector.h:464
size_t size() const
Definition vector.h:486
iterator begin()
Definition vector.h:516
iterator end()
Definition vector.h:518