package zstd
Import Path
internal/zstd (on go.dev)
Dependency Relation
imports 5 packages, and imported by one package
Involved Source Files
bits.go
block.go
fse.go
huff.go
literals.go
window.go
xxhash.go
Package zstd provides a decompressor for zstd streams,
described in RFC 8878. It does not support dictionaries.
Package-Level Type Names (only one)
Reader implements [io.Reader] to read a zstd compressed stream.
Read implements [io.Reader].
ReadByte implements [io.ByteReader].
Reset discards the current state and starts reading a new stream from r.
This permits reusing a Reader rather than allocating a new one.
*Reader : compress/flate.Reader
*Reader : image/jpeg.Reader
*Reader : io.ByteReader
*Reader : io.Reader
func NewReader(input io.Reader) *Reader
Package-Level Functions (only one)
NewReader creates a new Reader that decompresses data from the given reader.
The pages are generated with Golds v0.7.0-preview. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |