func io.NewSectionReader

6 uses

	io (current package)
		io.go#L480: func NewSectionReader(r ReaderAt, off int64, n int64) *SectionReader {

	archive/zip
		reader.go#L104: 	rs := io.NewSectionReader(r, 0, size)
		reader.go#L177: 	r := io.NewSectionReader(f.zipr, f.headerOffset+bodyOffset, size)
		reader.go#L185: 		desr = io.NewSectionReader(f.zipr, f.headerOffset+bodyOffset+size, dataDescriptorLen)

	google.golang.org/api/internal/gensupport
		buffer.go#L74: 	r := io.NewSectionReader(ra, 0, size)

	mime/multipart
		formdata.go#L158: 		r := io.NewSectionReader(bytes.NewReader(b), 0, int64(len(b)))