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

◆ HeapVector() [4/4]

template<typename T, typename Allocator = fl::allocator<T>>
template<size_t N>
fl::HeapVector< T, Allocator >::HeapVector ( T(&) values[N])
inline

Definition at line 355 of file vector.h.

355 {
356 T *begin = &values[0];
357 T *end = &values[N];
358 assign(begin, end);
359 }
void assign(InputIt begin, InputIt end)
Definition vector.h:464