[#BloombergLP-bdljsn-NumberUtil-isIntegralNumber] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdljsn.adoc[bdljsn]::xref:BloombergLP/bdljsn/NumberUtil.adoc[NumberUtil]::isIntegralNumber :relfileprefix: ../../../ :mrdocs: Return `true` if the specified `value` is a valid integral JSON number. == Synopsis Declared in `<bdljsn_numberutil.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static bool isIntegralNumber(std::string_view const& value); ---- == Description 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`. == Return Value `true` if `value` is a valid integral JSON number, and `false` otherwise == Parameters [cols="1,4"] |=== | Name| Description | *value* | JSON number text to inspect |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#