MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / find

Function find

third-party/nlohmann/include/nlohmann/json.hpp:2438–2448  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2436 /// @sa https://json.nlohmann.me/api/basic_json/find/
2437 template<typename KeyT>
2438 iterator find(KeyT&& key)
2439 {
2440 auto result = end();
2441
2442 if (is_object())
2443 {
2444 result.m_it.object_iterator = m_value.object->find(std::forward<KeyT>(key));
2445 }
2446
2447 return result;
2448 }
2449
2450 /// @brief find an element in a JSON object
2451 /// @sa https://json.nlohmann.me/api/basic_json/find/

Callers 2

valueFunction · 0.85
dump_floatFunction · 0.85

Calls 4

endFunction · 0.85
is_objectFunction · 0.85
cendFunction · 0.85
findMethod · 0.80

Tested by

no test coverage detected