| 172 | |
| 173 | private: |
| 174 | inline size_t Fill() { |
| 175 | const size_t avail = BufEnd() - End_; |
| 176 | const size_t bytesRead = Input_->Read(End_, avail); |
| 177 | |
| 178 | End_ += bytesRead; |
| 179 | |
| 180 | return bytesRead; |
| 181 | } |
| 182 | |
| 183 | inline char* BufBegin() noexcept { |
| 184 | return Buf_.Data(); |