(r Reader)
| 73 | } |
| 74 | |
| 75 | func (d *Decoder) Reset(r Reader) { |
| 76 | d.r = r |
| 77 | d.f = d.f.without(protocolFlags).with(decoderFlags(r)) |
| 78 | } |
| 79 | |
| 80 | func (d *Decoder) SetStrict(enabled bool) { |
| 81 | if enabled { |
nothing calls this directly
no test coverage detected