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

◆ operator()()

bool fl::StringFastLess::operator() ( const string & a,
const string & b ) const
inline

Definition at line 534 of file string.h.

534 {
535 fl::size al = a.size(), bl = b.size();
536 if (al != bl) {
537 return al < bl;
538 }
539 return fl::memcmp(a.c_str(), b.c_str(), al) < 0;
540 }
int memcmp(const void *s1, const void *s2, size_t n) FL_NOEXCEPT

References FL_NOEXCEPT, and fl::memcmp().

+ Here is the call graph for this function: