| 382 | bool FileOutputStream::closed() const { return !impl_->is_open(); } |
| 383 | |
| 384 | Result<int64_t> FileOutputStream::Tell() const { return impl_->Tell(); } |
| 385 | |
| 386 | Status FileOutputStream::Write(const void* data, int64_t length) { |
| 387 | return impl_->Write(data, length); |
no test coverage detected