func io.Copy
13 uses
io (current package)
io.go#L365: written, err = Copy(dst, LimitReader(src, n))
io.go#L388: func Copy(dst Writer, src Reader) (written int64, err error) {
github.com/go-faster/errors
adaptor.go#L67: _, _ = io.Copy(s, &p.buf)
adaptor.go#L121: _, _ = io.Copy(s, &p.buf)
mime
encodedword.go#L339: if _, err = io.Copy(buf, r); err != nil {
mime/multipart
multipart.go#L326: io.Copy(io.Discard, p)
writer.go#L121: _, err := io.Copy(w.w, &b)
net
net.go#L671: return io.Copy(writerOnly{w}, r)
net/http
server.go#L3516: io.Copy(io.Discard, mb)
transfer.go#L412: n, err = io.Copy(dst, src)
transfer.go#L1002: _, err = io.Copy(io.Discard, bodyLocked{b})
transport.go#L1801: n, err = io.Copy(w.pc.conn, r)
os
file.go#L161: return io.Copy(fileWithoutReadFrom{f}, r)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |