@brief return whether value is an object @sa https://json.nlohmann.me/api/basic_json/is_object/
| 20657 | /// @brief return whether value is an object |
| 20658 | /// @sa https://json.nlohmann.me/api/basic_json/is_object/ |
| 20659 | constexpr bool is_object() const noexcept |
| 20660 | { |
| 20661 | return m_data.m_type == value_t::object; |
| 20662 | } |
| 20663 | |
| 20664 | /// @brief return whether value is an array |
| 20665 | /// @sa https://json.nlohmann.me/api/basic_json/is_array/ |
no outgoing calls
no test coverage detected