type github.com/klauspost/compress/gzip.Writer
17 uses
github.com/klauspost/compress/gzip (current package)
gzip.go#L36: type Writer struct {
gzip.go#L57: func NewWriter(w io.Writer) *Writer {
gzip.go#L68: func NewWriterLevel(w io.Writer, level int) (*Writer, error) {
gzip.go#L72: z := new(Writer)
gzip.go#L85: func NewWriterWindow(w io.Writer, windowSize int) (*Writer, error) {
gzip.go#L93: z := new(Writer)
gzip.go#L98: func (z *Writer) init(w io.Writer, level int) {
gzip.go#L106: *z = Writer{
gzip.go#L120: func (z *Writer) Reset(w io.Writer) {
gzip.go#L125: func (z *Writer) writeBytes(b []byte) error {
gzip.go#L140: func (z *Writer) writeString(s string) (err error) {
gzip.go#L171: func (z *Writer) Write(p []byte) (int, error) {
gzip.go#L245: func (z *Writer) Flush() error {
gzip.go#L264: func (z *Writer) Close() error {
github.com/gotd/td/internal/proto
gzip.go#L33: func (g *gzipPool) GetWriter(w io.Writer) *gzip.Writer {
gzip.go#L34: writer := g.writers.Get().(*gzip.Writer)
gzip.go#L39: func (g *gzipPool) PutWriter(w *gzip.Writer) {
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |