| 288 | } |
| 289 | |
| 290 | inline static std::string scalars_only_src() { |
| 291 | return R"( |
| 292 | { "hello": 3.5, "world": false, "yo": "thing" } |
| 293 | { "hello": 3.25, "world": null } |
| 294 | { "hello": 3.125, "world": null, "yo": "\u5fcd" } |
| 295 | { "hello": 0.0, "world": true, "yo": null } |
| 296 | )"; |
| 297 | } |
| 298 | |
| 299 | inline static std::string nested_src() { |
| 300 | return R"( |