! @brief return whether value is null This function returns true if and only if the JSON value is null. @return `true` if type is null, `false` otherwise. @complexity Constant. @exceptionsafety No-throw guarantee: this member function never throws exceptions. @liveexample{The following code exemplifies `is_null()` for all JSON types.,is_null} @since versio
| 16689 | @since version 1.0.0 |
| 16690 | */ |
| 16691 | constexpr bool is_null() const noexcept |
| 16692 | { |
| 16693 | return m_type == value_t::null; |
| 16694 | } |
| 16695 | |
| 16696 | /*! |
| 16697 | @brief return whether value is a boolean |
no outgoing calls
no test coverage detected