TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ is_number_unsigned()

template<template< typename U, typename V, typename... Args > class ObjectType = std::map, template< typename U, typename... Args > class ArrayType = std::vector, class StringType = std::string, class BooleanType = bool, class NumberIntegerType = std::int64_t, class NumberUnsignedType = std::uint64_t, class NumberFloatType = double, template< typename U > class AllocatorType = std::allocator, template< typename T, typename SFINAE=void > class JSONSerializer = adl_serializer, class BinaryType = std::vector<std::uint8_t>>
constexpr bool nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer, BinaryType >::is_number_unsigned ( ) const
inlineconstexprnoexcept

return whether value is an unsigned integer number

This function returns true if and only if the JSON value is an unsigned integer number. This excludes floating-point and signed integer values.

Returns
true if type is an unsigned integer number, false otherwise.

@complexity Constant.

@exceptionsafety No-throw guarantee: this member function never throws exceptions.

@liveexample{The following code exemplifies is_number_unsigned() for all JSON types.,is_number_unsigned}

See also
see is_number() – check if value is a number
see is_number_integer() – check if value is an integer or unsigned integer number
see is_number_float() – check if value is a floating-point number
Since
version 2.0.0

Definition at line 20360 of file json.hpp.

20361 {
20362 return m_type == value_t::number_unsigned;
20363 }
@ number_unsigned
number value (unsigned integer)