@brief return whether value is a boolean @sa https://json.nlohmann.me/api/basic_json/is_boolean/
| 20485 | /// @brief return whether value is a boolean |
| 20486 | /// @sa https://json.nlohmann.me/api/basic_json/is_boolean/ |
| 20487 | constexpr bool is_boolean() const noexcept |
| 20488 | { |
| 20489 | return m_type == value_t::boolean; |
| 20490 | } |
| 20491 | |
| 20492 | /// @brief return whether value is a number |
| 20493 | /// @sa https://json.nlohmann.me/api/basic_json/is_number/ |
no outgoing calls
no test coverage detected