If true, the stream has reached the end of the file. After this is true, any Read*()/Get*()/Skip*() methods will not succeed.
| 151 | /// If true, the stream has reached the end of the file. After this is true, any |
| 152 | /// Read*()/Get*()/Skip*() methods will not succeed. |
| 153 | bool eof() const { return file_offset() == file_len_; } |
| 154 | |
| 155 | const char* filename() { return scan_range_->file(); } |
| 156 | const io::ScanRange* scan_range() { return scan_range_; } |
no outgoing calls
no test coverage detected