@brief return whether value is a boolean @sa https://json.nlohmann.me/api/basic_json/is_boolean/
| 20529 | /// @brief return whether value is a boolean |
| 20530 | /// @sa https://json.nlohmann.me/api/basic_json/is_boolean/ |
| 20531 | constexpr bool is_boolean() const noexcept |
| 20532 | { |
| 20533 | return m_type == value_t::boolean; |
| 20534 | } |
| 20535 | |
| 20536 | /// @brief return whether value is a number |
| 20537 | /// @sa https://json.nlohmann.me/api/basic_json/is_number/ |
no outgoing calls
no test coverage detected