[#BloombergLP-baljsn-Decoder-decode-0d] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/baljsn.adoc[baljsn]::xref:BloombergLP/baljsn/Decoder.adoc[Decoder]::decode :relfileprefix: ../../../ :mrdocs: Decode JSON from `streamBuf` into `value` using default options. == Synopsis Declared in `<baljsn_decoder.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> int decode( std::streambuf* streamBuf, TYPE* value); ---- == Description Decode an object of (template parameter) `TYPE` from the specified `streamBuf` and load the result into the specified modifiable `value`. Return 0 on success, and a non‐zero value otherwise. DEPRECATED: Use the `decode` function passed a reference to a non‐modifiable `DecoderOptions` object instead. == Return Value 0 on success, and a non‐zero value otherwise == Parameters [cols="1,4"] |=== | Name| Description | *streamBuf* | input buffer supplying JSON | *value* | object to decode into |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#