@brief return whether value is an unsigned integer number @sa https://json.nlohmann.me/api/basic_json/is_number_unsigned/
| 20506 | /// @brief return whether value is an unsigned integer number |
| 20507 | /// @sa https://json.nlohmann.me/api/basic_json/is_number_unsigned/ |
| 20508 | constexpr bool is_number_unsigned() const noexcept |
| 20509 | { |
| 20510 | return m_type == value_t::number_unsigned; |
| 20511 | } |
| 20512 | |
| 20513 | /// @brief return whether value is a floating-point number |
| 20514 | /// @sa https://json.nlohmann.me/api/basic_json/is_number_float/ |