Go library to wrap io.Reader and io.Closer together
https://godoc.org/go.yhsif.com/wrapreader
- Go 100%
| .editorconfig | ||
| doc.go | ||
| go.mod | ||
| go.sum | ||
| LICENSE | ||
| README.md | ||
| wrapreader.go | ||
| wrapreader_test.go | ||
WrapReader
WrapReader is a Go
library.
It provides an io.ReadCloser
that wraps an io.Reader and
an io.Closer together.
It's useful when dealing with io.Reader implementations that wraps another
io.ReadCloser, but will not close the underlying reader, such as
gzip.Reader.