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

◆ at() [1/2]

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

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

112 {
113 static char dummy = '\0';
114 if (pos >= mLength) {
115 dummy = '\0';
116 return dummy;
117 }
118 return c_str()[pos];
119}
uint8_t pos
Definition Blur.ino:11
const char * c_str() const FL_NOEXCEPT

References c_str(), mLength, and pos.

+ Here is the call graph for this function: