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

◆ at() [2/2]

char & fl::basic_string::at ( fl::size pos)

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

103 {
104 static char dummy = '\0';
105 if (pos >= mLength) {
106 dummy = '\0';
107 return dummy;
108 }
109 return c_str_mutable()[pos];
110}
uint8_t pos
Definition Blur.ino:11
char * c_str_mutable() FL_NOEXCEPT

References c_str_mutable(), mLength, and pos.

+ Here is the call graph for this function: