Definition at line 617 of file basic_string.cpp.hpp.
617 {
618 if (!s || count == 0)
return npos;
621 const char* str =
c_str();
622 for (fl::size i = searchPos + 1; i > 0; --i) {
623 for (fl::size j = 0; j < count; ++j) {
624 if (str[i - 1] == s[j]) return i - 1;
625 }
626 }
628}
static constexpr fl::size npos
const char * c_str() const FL_NOEXCEPT
References c_str(), mLength, npos, and pos.