type github.com/klauspost/compress/zstd.EOption

18 uses

	github.com/klauspost/compress/zstd (current package)
		dict.go#L537: 		encWith := func(opts ...EOption) int {
		encoder.go#L67: func NewWriter(w io.Writer, opts ...EOption) (*Encoder, error) {
		encoder.go#L138: func (e *Encoder) ResetWithOptions(w io.Writer, opts ...EOption) error {
		encoder_options.go#L13: type EOption func(*encoderOptions) error
		encoder_options.go#L77: func WithEncoderCRC(b bool) EOption {
		encoder_options.go#L88: func WithEncoderConcurrency(n int) EOption {
		encoder_options.go#L110: func WithWindowSize(n int) EOption {
		encoder_options.go#L141: func WithEncoderPadding(n int) EOption {
		encoder_options.go#L235: func WithEncoderLevel(l EncoderLevel) EOption {
		encoder_options.go#L272: func WithZeroFrames(b bool) EOption {
		encoder_options.go#L284: func WithAllLitEntropyCompression(b bool) EOption {
		encoder_options.go#L296: func WithNoEntropyCompression(b bool) EOption {
		encoder_options.go#L314: func WithSingleSegment(b bool) EOption {
		encoder_options.go#L326: func WithLowerEncoderMem(b bool) EOption {
		encoder_options.go#L345: func WithEncoderDict(dict []byte) EOption {
		encoder_options.go#L361: func WithEncoderDictRaw(id uint32, content []byte) EOption {
		encoder_options.go#L373: func WithEncoderDictDelete() EOption {
		zip.go#L117: func ZipCompressor(opts ...EOption) func(w io.Writer) (io.WriteCloser, error) {