@brief return whether value is a boolean @sa https://json.nlohmann.me/api/basic_json/is_boolean/
| 1347 | /// @brief return whether value is a boolean |
| 1348 | /// @sa https://json.nlohmann.me/api/basic_json/is_boolean/ |
| 1349 | constexpr bool is_boolean() const noexcept |
| 1350 | { |
| 1351 | return m_data.m_type == value_t::boolean; |
| 1352 | } |
| 1353 | |
| 1354 | /// @brief return whether value is a number |
| 1355 | /// @sa https://json.nlohmann.me/api/basic_json/is_number/ |
no outgoing calls
no test coverage detected