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

Function operator==

src/fl/stl/flat_set.h:326–330  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

324// Comparison operators
325template <typename Key, typename Less>
326bool operator==(const flat_set<Key, Less>& lhs,
327 const flat_set<Key, Less>& rhs) {
328 return lhs.size() == rhs.size() &&
329 fl::equal(lhs.begin(), lhs.end(), rhs.begin());
330}
331
332template <typename Key, typename Less>
333bool operator!=(const flat_set<Key, Less>& lhs,

Callers

nothing calls this directly

Calls 4

equalFunction · 0.85
sizeMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected