\brief Returns the current position in the output buffer.
| 40 | |
| 41 | /// \brief Returns the current position in the output buffer. |
| 42 | size_t CurrentPos() const { return mOutput.length(); } |
| 43 | |
| 44 | /// \brief Insert a string before the position \c atPos |
| 45 | void InsertAt(const size_t atPos, std::string_view data) { mOutput.insert(atPos, data); } |
no outgoing calls
no test coverage detected