962da00171
An optional parameter for dump() allows to set the character to use for indentation (default: space). In case a JSON value is serialized to an output stream, its fill character is used (and can be set with std::setfill).
22 lines
121 B
Text
22 lines
121 B
Text
{"one":1,"two":2}
|
|
|
|
[1,2,4,8,16]
|
|
|
|
{
|
|
"one": 1,
|
|
"two": 2
|
|
}
|
|
|
|
[
|
|
1,
|
|
2,
|
|
4,
|
|
8,
|
|
16
|
|
]
|
|
|
|
{
|
|
"one": 1,
|
|
"two": 2
|
|
}
|
|
|