@brief return whether value is null @sa https://json.nlohmann.me/api/basic_json/is_null/
| 20522 | /// @brief return whether value is null |
| 20523 | /// @sa https://json.nlohmann.me/api/basic_json/is_null/ |
| 20524 | constexpr bool is_null() const noexcept |
| 20525 | { |
| 20526 | return m_type == value_t::null; |
| 20527 | } |
| 20528 | |
| 20529 | /// @brief return whether value is a boolean |
| 20530 | /// @sa https://json.nlohmann.me/api/basic_json/is_boolean/ |
no outgoing calls
no test coverage detected