IgnoreChecksum allows to forcibly ignore checksum checking. Can be changed with ResetWithOptions.
(b bool)
| 191 | // IgnoreChecksum allows to forcibly ignore checksum checking. |
| 192 | // Can be changed with ResetWithOptions. |
| 193 | func IgnoreChecksum(b bool) DOption { |
| 194 | return func(o *decoderOptions) error { |
| 195 | o.ignoreChecksum = b |
| 196 | return nil |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | // WithDecoderDictDelete removes dictionaries by ID. |
| 201 | // If no ids are passed, all dictionaries are deleted. |
no outgoing calls
searching dependent graphs…