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

Function basic_json object

Source/external/json.hpp:20177–20181  ·  view source on GitHub ↗

@brief explicitly create an object from an initializer list @sa https://json.nlohmann.me/api/basic_json/object/

Source from the content-addressed store, hash-verified

20175 /// @brief explicitly create an object from an initializer list
20176 /// @sa https://json.nlohmann.me/api/basic_json/object/
20177 JSON_HEDLEY_WARN_UNUSED_RESULT
20178 static basic_json object(initializer_list_t init = {})
20179 {
20180 return basic_json(init, false, value_t::object);
20181 }
20182
20183 /// @brief construct an array with count copies of given value
20184 /// @sa https://json.nlohmann.me/api/basic_json/basic_json/

Callers

nothing calls this directly

Calls 1

basic_jsonFunction · 0.85

Tested by

no test coverage detected