WriteTo forwards WriteTo calls to the decoder.
(w io.Writer)
| 617 | |
| 618 | // WriteTo forwards WriteTo calls to the decoder. |
| 619 | func (c closeWrapper) WriteTo(w io.Writer) (n int64, err error) { |
| 620 | return c.d.WriteTo(w) |
| 621 | } |
| 622 | |
| 623 | // Read forwards read calls to the decoder. |
| 624 | func (c closeWrapper) Read(p []byte) (n int, err error) { |