Print the specified name and value onto the stream.
Synopsis
Declared in <baljsn_simpleformatter.h>
template<class TYPE>
int
addValue(
std::string_view const& name,
TYPE const& value);
Description
Print onto the stream supplied at construction the specified name and the specified value, preceded, if necessary, by a comma, passing the optionally specified options through to the rendering routines. Return 0 on success and a non‐zero value otherwise. The behavior is undefined unless isNameNeeded() is true.
Return Value
0 on success, and a non‐zero value otherwise
Parameters
Name |
Description |
name |
member name for the value |
value |
value to encode as JSON |
Created with MrDocs