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

◆ HeapVector() [5/6]

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

Definition at line 399 of file vector.h.

399 {
400 T *begin = &values[0];
401 T *end = &values[N];
402 assign(begin, end);
403 }
void assign(InputIt begin, InputIt end)
Definition vector.h:522