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

◆ find_first_not_of() [1/4]

fl::size fl::string_view::find_first_not_of ( char ch,
fl::size pos = 0 ) const
inline

Definition at line 336 of file string_view.h.

336 {
337 if (pos >= mSize) return npos;
338 for (fl::size i = pos; i < mSize; ++i) {
339 if (mData[i] != ch) return i;
340 }
341 return npos;
342 }
uint8_t pos
Definition Blur.ino:11
const char * mData
static constexpr fl::size npos
Definition string_view.h:35

References FL_NOEXCEPT, mData, mSize, npos, and pos.