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

Method find

src/fl/stl/unordered_map_small.h:270–273  ·  view source on GitHub ↗

Lookup

Source from the content-addressed store, hash-verified

268
269 // Lookup
270 iterator find(const Key& key) FL_NOEXCEPT {
271 size_type idx = find_index(key);
272 return idx != npos() ? iterator(this, idx) : end();
273 }
274
275 const_iterator find(const Key& key) const FL_NOEXCEPT {
276 size_type idx = find_index(key);

Callers

nothing calls this directly

Calls 4

find_indexFunction · 0.85
iteratorClass · 0.70
endFunction · 0.70
const_iteratorClass · 0.70

Tested by

no test coverage detected