Unlike AsString(), this will convert any type to a std::string.
| 532 | |
| 533 | // Unlike AsString(), this will convert any type to a std::string. |
| 534 | std::string ToString() const { |
| 535 | std::string s; |
| 536 | ToString(false, false, s); |
| 537 | return s; |
| 538 | } |
| 539 | |
| 540 | // Convert any type to a JSON-like string. strings_quoted determines if |
| 541 | // string values at the top level receive "" quotes (inside other values |
no test coverage detected