Close closes the Reader. It does not close the underlying io.Reader. In order for the GZIP checksum to be verified, the reader must be fully consumed until the io.EOF.
()
| 378 | // In order for the GZIP checksum to be verified, the reader must be |
| 379 | // fully consumed until the io.EOF. |
| 380 | func (z *Reader) Close() error { return z.decompressor.Close() } |