| 243 | reference operator[](size_type pos) { return vch[pos + nReadPos]; } |
| 244 | void clear() { vch.clear(); nReadPos = 0; } |
| 245 | iterator insert(iterator it, const char x=char()) { return vch.insert(it, x); } |
| 246 | void insert(iterator it, size_type n, const char x) { vch.insert(it, n, x); } |
| 247 | value_type* data() { return vch.data() + nReadPos; } |
| 248 | const value_type* data() const { return vch.data() + nReadPos; } |
no test coverage detected