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

◆ ends_with() [3/3]

bool fl::string_view::ends_with ( string_view sv) const
inline

Definition at line 403 of file string_view.h.

403 {
404 if (sv.mSize > mSize) return false;
405 for (fl::size i = 0; i < sv.mSize; ++i) {
406 if (mData[mSize - sv.mSize + i] != sv.mData[i]) return false;
407 }
408 return true;
409 }
const char * mData

References string_view(), FL_NOEXCEPT, mData, and mSize.

Referenced by ends_with().

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