Documentation ¶
Overview ¶
Package gzip0 implements writing of uncompressed (compression level 0) gzip files. The data in the files is uncompressed but still framed and checksummed, protecting against undetected corruption or truncation.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Writer ¶
type Writer struct {
// contains filtered or unexported fields
}
A Writer is an io.WriteCloser. Writes to a Writer are written to w in uncompressed gzip format.
func NewWriter ¶
NewWriter returns a new Writer. Writes to the returned Writer are written to w in uncompressed gzip format.
It is the caller's responsibility to call Close on the WriteCloser when done. Writes may be buffered and not flushed until Close.
Click to show internal directories.
Click to hide internal directories.