Check if this is an @ref object. Returns `true` if the value's @ref kind() is `kind::object`. @returns `this->kind() == kind::object`. @par Complexity Constant. @par Exception Safety No-throw guarantee. */
| 1203 | No-throw guarantee. |
| 1204 | */ |
| 1205 | bool |
| 1206 | is_object() const noexcept |
| 1207 | { |
| 1208 | return kind() == json::kind::object; |
| 1209 | } |
| 1210 | |
| 1211 | /** Check if this is a @ref string. |
| 1212 |
no test coverage detected