func io.TeeReader

7 uses

	io (current package)
		io.go#L550: func TeeReader(r Reader, w Writer) Reader {

	github.com/aws/aws-sdk-go/aws/client
		logger.go#L134: 			Reader: io.TeeReader(r.HTTPResponse.Body, lw),

	github.com/aws/aws-sdk-go/aws/credentials/processcreds
		provider.go#L417: 	tee := io.TeeReader(r, w)

	github.com/aws/aws-sdk-go/private/protocol/json/jsonutil
		unmarshal.go#L26: 	body := io.TeeReader(stream, &errBuf)

	github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil
		unmarshal.go#L24: 	body := io.TeeReader(stream, &errBuf)

	github.com/go-git/go-git/v5/plumbing/format/index
		decoder.go#L54: 		r:         io.TeeReader(r, h),

	github.com/go-git/go-git/v5/plumbing/format/objfile
		reader.go#L91: 	r.multi = io.TeeReader(r.zlib, r.hasher)