| 142 | } |
| 143 | |
| 144 | std::string_view JsonWriter::toStringView() { |
| 145 | return std::string_view(_compactBuffer.GetString(), _compactBuffer.GetSize()); |
| 146 | } |
| 147 | |
| 148 | std::vector<std::byte> JsonWriter::toBytes() { |
| 149 | const auto view = this->toStringView(); |
no outgoing calls
no test coverage detected