| 4697 | } |
| 4698 | |
| 4699 | std::basic_string<char_type> to_string() const noexcept |
| 4700 | { |
| 4701 | using string_type2 = std::basic_string<char_type>; |
| 4702 | string_type2 s; |
| 4703 | basic_compact_json_encoder<char_type, jsoncons::string_sink<string_type2>> encoder(s); |
| 4704 | dump(encoder); |
| 4705 | return s; |
| 4706 | } |
| 4707 | |
| 4708 | object_range_type object_range() |
| 4709 | { |