@brief return whether value is a floating-point number @sa https://json.nlohmann.me/api/basic_json/is_number_float/
| 1340 | /// @brief return whether value is a floating-point number |
| 1341 | /// @sa https://json.nlohmann.me/api/basic_json/is_number_float/ |
| 1342 | constexpr bool is_number_float() const noexcept |
| 1343 | { |
| 1344 | return m_type == value_t::number_float; |
| 1345 | } |
| 1346 | |
| 1347 | /// @brief return whether value is an object |
| 1348 | /// @sa https://json.nlohmann.me/api/basic_json/is_object/ |
no outgoing calls
no test coverage detected