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

◆ at()

const char & fl::string_view::at ( fl::size index) const
inlineconstexpr

Definition at line 81 of file string_view.h.

81 {
82 // Basic bounds checking
83 return (index < mSize) ? mData[index] : mData[0];
84 }
const char * mData

References FL_NOEXCEPT, mData, and mSize.