| 237 | iterator end() { return vch.end(); } |
| 238 | size_type size() const { return vch.size() - nReadPos; } |
| 239 | bool empty() const { return vch.size() == nReadPos; } |
| 240 | void resize(size_type n, value_type c=0) { vch.resize(n + nReadPos, c); } |
| 241 | void reserve(size_type n) { vch.reserve(n + nReadPos); } |
| 242 | const_reference operator[](size_type pos) const { return vch[pos + nReadPos]; } |
no test coverage detected