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

◆ reserve()

template<typename T, typename Allocator = fl::allocator<T>>
void fl::HeapVector< T, Allocator >::reserve ( fl::size n)
inline

Definition at line 458 of file vector.h.

458 {
459 if (n > mCapacity) {
460 ensure_size(n);
461 }
462 }
void ensure_size(fl::size n)
Definition vector.h:431