* Test if we have reached the end of the file. * @return True iff the current position as at or after the end of the file. */
| 78 | * @return True iff the current position as at or after the end of the file. |
| 79 | */ |
| 80 | bool RandomAccessFile::AtEndOfFile() const |
| 81 | { |
| 82 | return this->GetPos() >= this->GetEndPos(); |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * Seek in the current file. |
no test coverage detected