MCPcopy
hub / github.com/klauspost/compress / WithEncoderDictDelete

Function WithEncoderDictDelete

zstd/encoder_options.go:410–415  ·  view source on GitHub ↗

WithEncoderDictDelete clears the dictionary, so no dictionary will be used. Should be used with ResetWithOptions.

()

Source from the content-addressed store, hash-verified

408// WithEncoderDictDelete clears the dictionary, so no dictionary will be used.
409// Should be used with ResetWithOptions.
410func WithEncoderDictDelete() EOption {
411 return func(o *encoderOptions) error {
412 o.dict = nil
413 return nil
414 }
415}

Callers 2

TestEncoderDictDeleteFunction · 0.85

Calls

no outgoing calls

Tested by 2

TestEncoderDictDeleteFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…