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