| 297 | } |
| 298 | |
| 299 | inline static std::string nested_src() { |
| 300 | return R"( |
| 301 | { "hello": 3.5, "world": false, "yo": "thing", "arr": [1, 2, 3], "nuf": {} } |
| 302 | { "hello": 3.25, "world": null, "arr": [2], "nuf": null } |
| 303 | { "hello": 3.125, "world": null, "yo": "\u5fcd", "arr": [], "nuf": { "ps": 78 } } |
| 304 | { "hello": 0.0, "world": true, "yo": null, "arr": null, "nuf": { "ps": 90 } } |
| 305 | )"; |
| 306 | } |
| 307 | |
| 308 | inline static std::string null_src() { |
| 309 | return R"( |