| 107 | } |
| 108 | |
| 109 | void PrettyPrinter::Write(std::string_view data) { |
| 110 | Write(data, options_.element_size_limit); |
| 111 | } |
| 112 | |
| 113 | void PrettyPrinter::Write(std::string_view data, int max_chars) { |
| 114 | (*sink_) << data.substr(0, max_chars); |
no test coverage detected