Read implements `io.Reader`
(p []byte)
| 166 | |
| 167 | // Read implements `io.Reader` |
| 168 | func (m *Reader) Read(p []byte) (int, error) { |
| 169 | return m.R.Read(p) |
| 170 | } |
| 171 | |
| 172 | // CopyNext reads the next object from m without decoding it and writes it to w. |
| 173 | // It avoids unnecessary copies internally. |
no outgoing calls