MCPcopy Create free account
hub / github.com/FastLED/FastLED / operator==

Function operator==

src/fl/stl/string_view.h:437–439  ·  view source on GitHub ↗

======= COMPARISON OPERATORS =======

Source from the content-addressed store, hash-verified

435
436// ======= COMPARISON OPERATORS =======
437inline bool operator==(string_view lhs, string_view rhs) FL_NOEXCEPT {
438 return lhs.compare(rhs) == 0;
439}
440
441inline bool operator!=(string_view lhs, string_view rhs) FL_NOEXCEPT {
442 return lhs.compare(rhs) != 0;

Callers

nothing calls this directly

Calls 1

compareMethod · 0.45

Tested by

no test coverage detected