MCPcopy
hub / github.com/klauspost/compress / Writer

Struct Writer

flate/deflate.go:942–945  ·  view source on GitHub ↗

A Writer takes data written to it and writes the compressed form of that data to an underlying writer (see NewWriter).

Source from the content-addressed store, hash-verified

940// A Writer takes data written to it and writes the compressed
941// form of that data to an underlying writer (see NewWriter).
942type Writer struct {
943 d compressor
944 dict []byte
945}
946
947// Write writes data to w, which will eventually write the
948// compressed form of data to its underlying writer.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected