| 15 | explicit ReadBufferFromString(std::string_view s) : ReadBufferFromMemory(s) {} |
| 16 | |
| 17 | std::string_view stringView() const { return std::string_view(pos, working_buffer.end() - pos); } |
| 18 | }; |
| 19 | |
| 20 | class ReadBufferFromOwnString : public String, public ReadBufferFromString |
no test coverage detected