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

◆ operator==()

bool fl::string::operator== ( const string & other) const

Definition at line 236 of file string.cpp.hpp.

236 {
237 if (size() != other.size()) {
238 return false;
239 }
240 return fl::memcmp(c_str(), other.c_str(), size()) == 0;
241}
const char * c_str() const FL_NOEXCEPT
fl::size size() const FL_NOEXCEPT
int memcmp(const void *s1, const void *s2, size_t n) FL_NOEXCEPT

References fl::basic_string::c_str(), FL_NOEXCEPT, fl::memcmp(), and fl::basic_string::size().

+ Here is the call graph for this function: