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

Function find

src/fl/stl/unordered_map.h:627–630  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

625 }
626
627 iterator find(const Key &key) {
628 auto idx = find_index(key);
629 return idx == npos() ? end() : iterator(this, idx);
630 }
631
632 const_iterator find(const Key &key) const {
633 auto idx = find_index(key);

Callers 1

equal_rangeFunction · 0.70

Calls 4

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

Tested by

no test coverage detected