@brief return whether value is an object @sa https://json.nlohmann.me/api/basic_json/is_object/
| 1382 | /// @brief return whether value is an object |
| 1383 | /// @sa https://json.nlohmann.me/api/basic_json/is_object/ |
| 1384 | constexpr bool is_object() const noexcept |
| 1385 | { |
| 1386 | return m_data.m_type == value_t::object; |
| 1387 | } |
| 1388 | |
| 1389 | /// @brief return whether value is an array |
| 1390 | /// @sa https://json.nlohmann.me/api/basic_json/is_array/ |
no outgoing calls
no test coverage detected