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

19 uses

	github.com/klauspost/compress/zstd (current package)
		dict.go#L538: 		encWith := func(opts ...EOption) int {
		encoder.go#L71: func NewWriter(w io.Writer, opts ...EOption) (*Encoder, error) {
		encoder.go#L164: func (e *Encoder) ResetWithOptions(w io.Writer, opts ...EOption) error {
		encoder_options.go#L13: type EOption func(*encoderOptions) error
		encoder_options.go#L78: func WithEncoderCRC(b bool) EOption {
		encoder_options.go#L89: func WithEncoderConcurrency(n int) EOption {
		encoder_options.go#L111: func WithWindowSize(n int) EOption {
		encoder_options.go#L142: func WithEncoderPadding(n int) EOption {
		encoder_options.go#L236: func WithEncoderLevel(l EncoderLevel) EOption {
		encoder_options.go#L273: func WithZeroFrames(b bool) EOption {
		encoder_options.go#L285: func WithAllLitEntropyCompression(b bool) EOption {
		encoder_options.go#L297: func WithNoEntropyCompression(b bool) EOption {
		encoder_options.go#L315: func WithSingleSegment(b bool) EOption {
		encoder_options.go#L327: func WithLowerEncoderMem(b bool) EOption {
		encoder_options.go#L345: func WithConcurrentBlocks(b bool) EOption {
		encoder_options.go#L382: func WithEncoderDict(dict []byte) EOption {
		encoder_options.go#L398: func WithEncoderDictRaw(id uint32, content []byte) EOption {
		encoder_options.go#L410: func WithEncoderDictDelete() EOption {
		zip.go#L117: func ZipCompressor(opts ...EOption) func(w io.Writer) (io.WriteCloser, error) {