[#BloombergLP-bdljsn-Json_Initializer-2constructor-06] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdljsn.adoc[bdljsn]::xref:BloombergLP/bdljsn/Json_Initializer.adoc[Json_Initializer]::Json_Initializer :relfileprefix: ../../../ :mrdocs: Create a `Json_Initializer` holding the specified integral `value`. == Synopsis Declared in `<bdljsn_json.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class t_INTEGRAL> Json_Initializer(t_INTEGRAL value) requires bsl::is_integral<t_INTEGRAL> ::value && !bsl::is_same<t_INTEGRAL, bool>::value; ---- == Description Create a `Json_Initializer` object containing the value of the specified `value` in the internal variant. If `value` is a signed integral type, then the value is stored as a `long long`. If `value` is an unsigned integral type, then the value is stored as an `unsigned long long`. == Parameters [cols="1,4"] |=== | Name| Description | *value* | integral value to store |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#