@brief return whether value is an object @sa https://json.nlohmann.me/api/basic_json/is_object/
| 20520 | /// @brief return whether value is an object |
| 20521 | /// @sa https://json.nlohmann.me/api/basic_json/is_object/ |
| 20522 | constexpr bool is_object() const noexcept |
| 20523 | { |
| 20524 | return m_type == value_t::object; |
| 20525 | } |
| 20526 | |
| 20527 | /// @brief return whether value is an array |
| 20528 | /// @sa https://json.nlohmann.me/api/basic_json/is_array/ |
no outgoing calls
no test coverage detected