Check if this is a null value. Returns `true` if the value's @ref kind() is `kind::null`. @returns `this->kind() == kind::null`. @par Complexity Constant. @par Exception Safety No-throw guarantee. */
| 1311 | No-throw guarantee. |
| 1312 | */ |
| 1313 | bool |
| 1314 | is_null() const noexcept |
| 1315 | { |
| 1316 | return kind() == json::kind::null; |
| 1317 | } |
| 1318 | |
| 1319 | /** Checks if this is an @ref array or an @ref object. |
| 1320 |
no test coverage detected