MCPcopy Create free account
hub / github.com/CalcProgrammer1/OpenRGB / find

Function find

dependencies/json/json.hpp:20895–20905  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20893 */
20894 template<typename KeyT>
20895 iterator find(KeyT&& key)
20896 {
20897 auto result = end();
20898
20899 if (is_object())
20900 {
20901 result.m_it.object_iterator = m_value.object->find(std::forward<KeyT>(key));
20902 }
20903
20904 return result;
20905 }
20906
20907 /*!
20908 @brief find an element in a JSON object

Callers 10

dump_floatFunction · 0.70
valueFunction · 0.70
DeviceUpdateLEDsMethod · 0.50

Calls 4

endFunction · 0.70
is_objectFunction · 0.70
cendFunction · 0.70
findMethod · 0.45

Tested by

no test coverage detected