(p []byte)
| 19 | type readerFunc func(p []byte) (n int, err error) |
| 20 | |
| 21 | func (rf readerFunc) Read(p []byte) (n int, err error) { return rf(p) } |
| 22 | |
| 23 | // CopyWithCtx slightly modified function signature: |
| 24 | // - context has been added in order to propagate cancellation |
no outgoing calls
no test coverage detected