Read forwards read calls to the decoder.
(p []byte)
| 622 | |
| 623 | // Read forwards read calls to the decoder. |
| 624 | func (c closeWrapper) Read(p []byte) (n int, err error) { |
| 625 | return c.d.Read(p) |
| 626 | } |
| 627 | |
| 628 | // Close closes the decoder. |
| 629 | func (c closeWrapper) Close() error { |