func io.MultiWriter

8 uses

	io (current package)
		multi.go#L102: func MultiWriter(writers ...Writer) Writer {

	github.com/go-git/go-git/v5/plumbing/format/idxfile
		encoder.go#L20: 	mw := io.MultiWriter(w, h)

	github.com/go-git/go-git/v5/plumbing/format/index
		encoder.go#L33: 	mw := io.MultiWriter(w, h)

	github.com/go-git/go-git/v5/plumbing/format/objfile
		writer.go#L66: 	w.multi = io.MultiWriter(w.zlib, w.hasher)

	github.com/go-git/go-git/v5/plumbing/format/packfile
		encoder.go#L33: 	mw := io.MultiWriter(w, h)

	google.golang.org/grpc/grpclog
		loggerv2.go#L116: 	m = append(m, log.New(io.MultiWriter(infoW, warningW), severityName[warningLog]+": ", log.LstdFlags))
		loggerv2.go#L117: 	ew := io.MultiWriter(infoW, warningW, errorW) // ew will be used for error and fatal.

	net/http/httputil
		dump.go#L120: 			return &dumpConn{io.MultiWriter(&buf, pw), dr}, nil