@brief return whether value is an object @sa https://json.nlohmann.me/api/basic_json/is_object/
| 20564 | /// @brief return whether value is an object |
| 20565 | /// @sa https://json.nlohmann.me/api/basic_json/is_object/ |
| 20566 | constexpr bool is_object() const noexcept |
| 20567 | { |
| 20568 | return m_type == value_t::object; |
| 20569 | } |
| 20570 | |
| 20571 | /// @brief return whether value is an array |
| 20572 | /// @sa https://json.nlohmann.me/api/basic_json/is_array/ |
no outgoing calls
no test coverage detected