MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / find

Function find

Source/external/json.hpp:19166–19176  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19164 }
19165
19166 iterator find(const key_type& key)
19167 {
19168 for (auto it = this->begin(); it != this->end(); ++it)
19169 {
19170 if (m_compare(it->first, key))
19171 {
19172 return it;
19173 }
19174 }
19175 return Container::end();
19176 }
19177
19178 template<class KeyType, detail::enable_if_t<
19179 detail::is_usable_as_key_type<key_compare, key_type, KeyType>::value, int> = 0>

Callers 8

loadLevelMethod · 0.85
toggleTimeMethod · 0.85
toggleDifficultyMethod · 0.85
createFromStringMethod · 0.85
write_ubjsonMethod · 0.85
dump_floatFunction · 0.85
json.hppFile · 0.85
valueFunction · 0.85

Calls 5

endFunction · 0.85
is_objectFunction · 0.85
cendFunction · 0.85
beginMethod · 0.80
endMethod · 0.80

Tested by

no test coverage detected