MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/SPlisHSPlasH / find

Function find

extern/json/json.hpp:19204–19214  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19202 }
19203
19204 iterator find(const key_type& key)
19205 {
19206 for (auto it = this->begin(); it != this->end(); ++it)
19207 {
19208 if (m_compare(it->first, key))
19209 {
19210 return it;
19211 }
19212 }
19213 return Container::end();
19214 }
19215
19216 template<class KeyType, detail::enable_if_t<
19217 detail::is_usable_as_key_type<key_compare, key_type, KeyType>::value, int> = 0>

Callers 4

write_ubjsonMethod · 0.70
dump_floatFunction · 0.70
json.hppFile · 0.70
valueFunction · 0.70

Calls 6

is_objectFunction · 0.85
cendFunction · 0.85
endFunction · 0.70
beginMethod · 0.45
endMethod · 0.45
findMethod · 0.45

Tested by

no test coverage detected