! @brief return whether value is an object This function returns true if and only if the JSON value is an object. @return `true` if type is object, `false` otherwise. @complexity Constant. @exceptionsafety No-throw guarantee: this member function never throws exceptions. @liveexample{The following code exemplifies `is_object()` for all JSON types.,is_object}
| 2708 | @since version 1.0.0 |
| 2709 | */ |
| 2710 | constexpr bool is_object() const noexcept |
| 2711 | { |
| 2712 | return m_type == value_t::object; |
| 2713 | } |
| 2714 | |
| 2715 | /*! |
| 2716 | @brief return whether value is an array |
no outgoing calls
no test coverage detected