@brief return whether value is a floating-point number @sa https://json.nlohmann.me/api/basic_json/is_number_float/
| 20650 | /// @brief return whether value is a floating-point number |
| 20651 | /// @sa https://json.nlohmann.me/api/basic_json/is_number_float/ |
| 20652 | constexpr bool is_number_float() const noexcept |
| 20653 | { |
| 20654 | return m_data.m_type == value_t::number_float; |
| 20655 | } |
| 20656 | |
| 20657 | /// @brief return whether value is an object |
| 20658 | /// @sa https://json.nlohmann.me/api/basic_json/is_object/ |
no outgoing calls
no test coverage detected