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

◆ vector_psram() [3/6]

template<typename T>
fl::vector_psram< T >::vector_psram ( fl::initializer_list< T > init)
inline

Definition at line 925 of file vector.h.

927 this->reserve_impl(init.size());
928 for (const auto& value : init) {
929 this->push_back(value);
930 }
931 }
void reserve_impl(fl::size n) FL_NOEXCEPT
fl::size size() const FL_NOEXCEPT
vector() FL_NOEXCEPT
Definition vector.h:492
void push_back(const T &value) FL_NOEXCEPT
Definition vector.h:624
memory_resource * psram_memory_resource()
Get the PSRAM memory resource (wraps PSRamAllocate / PSRamDeallocate).

References FL_NOEXCEPT, fl::init(), fl::vector< T >::push_back(), fl::vector_basic::reserve_impl(), and fl::type_rank< T >::value.

+ Here is the call graph for this function: