MCPcopy Create free account
hub / github.com/FastLED/FastLED / has

Method has

src/fl/stl/unordered_set.h:150–150  ·  view source on GitHub ↗

Lookup operations

Source from the content-addressed store, hash-verified

148
149 // Lookup operations
150 bool has(const Key &key) const { return data.contains(key); }
151 bool contains(const Key &key) const { return has(key); } // C++20 style
152
153 /// Equality comparison (set equality: same elements, order-independent)

Callers 1

operator==Method · 0.45

Calls 1

containsMethod · 0.45

Tested by

no test coverage detected