@brief return whether value is a boolean @sa https://json.nlohmann.me/api/basic_json/is_boolean/
| 1312 | /// @brief return whether value is a boolean |
| 1313 | /// @sa https://json.nlohmann.me/api/basic_json/is_boolean/ |
| 1314 | constexpr bool is_boolean() const noexcept |
| 1315 | { |
| 1316 | return m_type == value_t::boolean; |
| 1317 | } |
| 1318 | |
| 1319 | /// @brief return whether value is a number |
| 1320 | /// @sa https://json.nlohmann.me/api/basic_json/is_number/ |
no outgoing calls
no test coverage detected