MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / basic_json array

Function basic_json array

Source/Utils/json.hpp:18268–18272  ·  view source on GitHub ↗

! @brief explicitly create an array from an initializer list Creates a JSON array value from a given initializer list. That is, given a list of values `a, b, c`, creates the JSON value `[a, b, c]`. If the initializer list is empty, the empty array `[]` is created. @note This function is only needed to express two edge cases that cannot be realized

Source from the content-addressed store, hash-verified

18266 @since version 1.0.0
18267 */
18268 JSON_HEDLEY_WARN_UNUSED_RESULT
18269 static basic_json array(initializer_list_t init = {})
18270 {
18271 return basic_json(init, false, value_t::array);
18272 }
18273
18274 /*!
18275 @brief explicitly create an object from an initializer list

Callers

nothing calls this directly

Calls 1

basic_jsonFunction · 0.70

Tested by

no test coverage detected