@brief return whether value is null @sa https://json.nlohmann.me/api/basic_json/is_null/
| 20478 | /// @brief return whether value is null |
| 20479 | /// @sa https://json.nlohmann.me/api/basic_json/is_null/ |
| 20480 | constexpr bool is_null() const noexcept |
| 20481 | { |
| 20482 | return m_type == value_t::null; |
| 20483 | } |
| 20484 | |
| 20485 | /// @brief return whether value is a boolean |
| 20486 | /// @sa https://json.nlohmann.me/api/basic_json/is_boolean/ |
no outgoing calls
no test coverage detected