An EncoderFunc is a function that wraps the provided io.Writer with a streaming compression algorithm and returns it. In case of failure, the function should return nil.
func(w io.Writer, level int) io.Writer
| 251 | // |
| 252 | // In case of failure, the function should return nil. |
| 253 | type EncoderFunc func(w io.Writer, level int) io.Writer |
| 254 | |
| 255 | // Interface for types that allow resetting io.Writers. |
| 256 | type ioResetterWriter interface { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…