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

◆ find_first_not_of() [1/4]

fl::size fl::basic_string::find_first_not_of ( char c,
fl::size pos = 0 ) const

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

640 {
641 if (pos >= mLength) return npos;
642 const char* str = c_str();
643 for (fl::size i = pos; i < mLength; ++i) {
644 if (str[i] != c) return i;
645 }
646 return npos;
647}
uint8_t pos
Definition Blur.ino:11
static constexpr fl::size npos
const char * c_str() const FL_NOEXCEPT

References c_str(), mLength, npos, and pos.

Referenced by find_first_not_of(), and find_first_not_of().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: