@brief return whether value is a floating-point number @sa https://json.nlohmann.me/api/basic_json/is_number_float/
| 20513 | /// @brief return whether value is a floating-point number |
| 20514 | /// @sa https://json.nlohmann.me/api/basic_json/is_number_float/ |
| 20515 | constexpr bool is_number_float() const noexcept |
| 20516 | { |
| 20517 | return m_type == value_t::number_float; |
| 20518 | } |
| 20519 | |
| 20520 | /// @brief return whether value is an object |
| 20521 | /// @sa https://json.nlohmann.me/api/basic_json/is_object/ |
no outgoing calls
no test coverage detected