If true, all bytes in this scan range have been returned from this ScannerContext to callers or we hit eof before reaching the end of the scan range. Callers can continue to call Read*()/Get*()/Skip*() methods on the stream until eof() is true.
| 145 | /// to callers or we hit eof before reaching the end of the scan range. Callers can |
| 146 | /// continue to call Read*()/Get*()/Skip*() methods on the stream until eof() is true. |
| 147 | bool eosr() const { |
| 148 | return total_bytes_returned_ >= scan_range_->bytes_to_read() || eof(); |
| 149 | } |
| 150 | |
| 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. |
no test coverage detected