@brief explicitly create an object from an initializer list @sa https://json.nlohmann.me/api/basic_json/object/
| 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/ |
nothing calls this directly
no test coverage detected