MCPcopy Create free account
hub / github.com/FastFlowLM/FastFlowLM / basic_json array

Function basic_json array

src/include/nlohmann/json.hpp:1012–1016  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1010 /// @brief explicitly create an array from an initializer list
1011 /// @sa https://json.nlohmann.me/api/basic_json/array/
1012 JSON_HEDLEY_WARN_UNUSED_RESULT
1013 static basic_json array(initializer_list_t init = {})
1014 {
1015 return basic_json(init, false, value_t::array);
1016 }
1017
1018 /// @brief explicitly create an object from an initializer list
1019 /// @sa https://json.nlohmann.me/api/basic_json/object/

Callers

nothing calls this directly

Calls 1

basic_jsonFunction · 0.85

Tested by

no test coverage detected