var archive/zip.compressors
5 uses
archive/zip (current package)
register.go#L105: compressors sync.Map // map[uint16]Compressor
register.go#L110: compressors.Store(Store, Compressor(func(w io.Writer) (io.WriteCloser, error) { return &nopCloser{w}, nil }))
register.go#L111: compressors.Store(Deflate, Compressor(func(w io.Writer) (io.WriteCloser, error) { return newFlateWriter(w), nil }))
register.go#L128: if _, dup := compressors.LoadOrStore(method, comp); dup {
register.go#L134: ci, ok := compressors.Load(method)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |