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

◆ clear()

template<size_t SIZE = 64>
void fl::StrN< SIZE >::clear ( bool freeMemory = false)
inline

Definition at line 310 of file str.h.

310 {
311 mLength = 0;
312 if (freeMemory && mHeapData) {
313 mHeapData.reset();
314 }
315 }
size_t mLength
Definition str.h:81
StringHolderPtr mHeapData
Definition str.h:83
Definition str.h:79

References mHeapData, and mLength.