Return true if the specified value is a valid integral JSON number.
Declared in <bdljsn_numberutil.h>
static
bool
isIntegralNumber(std::string_view const& value);
Note that this function may return true even if value cannot be represented in a fundamental integral type. The behavior is undefined unless isValidNumber(value) is true.
true if value is a valid integral JSON number, and false otherwise
| Name | Description |
|---|---|
| value | JSON number text to inspect |