SetMode configures the decoding behavior, safe vs fastest.
(m DecoderMode)
| 78 | |
| 79 | // SetMode configures the decoding behavior, safe vs fastest. |
| 80 | func (d *Decoder) SetMode(m DecoderMode) { |
| 81 | d.mode = m |
| 82 | } |
| 83 | |
| 84 | // Seek sets the position of the next read operation to [offset], interpreted according to [whence]: |
| 85 | // [io.SeekStart] means relative to the start of the data, [io.SeekCurrent] means relative to the |
no outgoing calls