Read implements the [io.Reader] interface.
(p []byte)
| 38 | |
| 39 | // Read implements the [io.Reader] interface. |
| 40 | func (i *In) Read(p []byte) (int, error) { |
| 41 | return i.in.Read(p) |
| 42 | } |
| 43 | |
| 44 | // Close implements the [io.Closer] interface. |
| 45 | func (i *In) Close() error { |
no outgoing calls