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

◆ find_last_not_of() [4/4]

fl::size fl::basic_string::find_last_not_of ( const char * s,
fl::size pos = npos ) const

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

701 {
702 if (!s) {
703 if (mLength == 0) return npos;
704 fl::size searchPos = (pos >= mLength || pos == npos) ? (mLength - 1) : pos;
705 return searchPos;
706 }
707 return find_last_not_of(s, pos, fl::strlen(s));
708}
uint8_t pos
Definition Blur.ino:11
fl::size find_last_not_of(char c, fl::size pos=npos) const FL_NOEXCEPT
static constexpr fl::size npos
size_t strlen(const char *s) FL_NOEXCEPT

References find_last_not_of(), mLength, npos, pos, and fl::strlen().

+ Here is the call graph for this function: