func github.com/klauspost/compress/zstd.WithDecoderLowmem

4 uses

	github.com/klauspost/compress/zstd (current package)
		decoder_options.go#L47: func WithDecoderLowmem(b bool) DOption {
		simple_go124.go#L44: 		dec, err = NewReader(nil, WithDecoderConcurrency(runtime.NumCPU()), WithDecoderLowmem(true), WithDecoderMaxMemory(1<<30))
		zip.go#L23: 	z, err := NewReader(nil, WithDecoderLowmem(true), WithDecoderMaxWindow(128<<20), WithDecoderConcurrency(1))
		zip.go#L34: 		opts = append([]DOption{WithDecoderLowmem(true), WithDecoderMaxWindow(128 << 20)}, opts...)