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

◆ operator[]() [2/2]

char & fl::basic_string::operator[] ( fl::size index)

Definition at line 94 of file basic_string.cpp.hpp.

94 {
95 static char dummy = '\0';
96 if (index >= mLength) {
97 dummy = '\0';
98 return dummy;
99 }
100 return c_str_mutable()[index];
101}
char * c_str_mutable() FL_NOEXCEPT

References c_str_mutable(), and mLength.

+ Here is the call graph for this function: