| 178 | } |
| 179 | |
| 180 | Y_PURE_FUNCTION inline TBasicStringBuf SubString(size_t pos, size_t n) const noexcept { |
| 181 | pos = Min(pos, size()); |
| 182 | n = Min(n, size() - pos); |
| 183 | return TBasicStringBuf(data() + pos, n); |
| 184 | } |
| 185 | |
| 186 | public: |
| 187 | void Clear() { |
no test coverage detected