mirror of
https://github.com/nlohmann/json.git
synced 2024-11-28 00:59:02 +08:00
e3095f636f
* Add operator<< for json_pointer * Deprecate json_pointer::operator string_t() * Update documentation * Move operator<<(basic_json) example * Add example * Add mkdocs-redirects * Move operator<< and operator>> doc pages out of basic_json/ * Rename JSON pointer operator_string to operator_string_t * Add unit test
23 lines
121 B
Plaintext
23 lines
121 B
Plaintext
{"one":1,"two":2}
|
|
|
|
[1,2,4,8,16]
|
|
|
|
{
|
|
"one": 1,
|
|
"two": 2
|
|
}
|
|
|
|
[
|
|
1,
|
|
2,
|
|
4,
|
|
8,
|
|
16
|
|
]
|
|
|
|
{
|
|
"one": 1,
|
|
"two": 2
|
|
}
|
|
|