* Writes a string to the underlying output stream. * * This function writes the provided string view directly to the output stream without any additional formatting. * * @param sv The string view to write to the output stream. */
| 232 | * @param sv The string view to write to the output stream. |
| 233 | */ |
| 234 | void JsonEncoder::Write(const std::string_view& sv) const |
| 235 | { |
| 236 | m_Writer->write_characters(sv.data(), sv.size()); |
| 237 | } |
| 238 | |
| 239 | /** |
| 240 | * Begins a JSON container (object or array) by writing the opening character and adjusting the |
nothing calls this directly
no test coverage detected