reflect.Value.Slice (method)

15 uses

	reflect (current package)
		type.go#L2393: 		copy(tt.Elem().Field(2).Slice(0, len(methods)).Interface().([]abi.Method), methods)
		value.go#L2223: func (v Value) Slice(i, j int) Value {
		value.go#L2665: 	Copy(s.Slice(ns, ns+nt), t)

	github.com/google/go-cmp/cmp
		report_slices.go#L375: 			list = append(list, makeRec(v.Slice(0, n), d))
		report_slices.go#L376: 			v = v.Slice(n, v.Len())
		report_slices.go#L414: 			appendChunks(vx.Slice(0, numLo), diffIdentical)
		report_slices.go#L419: 			appendChunks(vx.Slice(numEqual-numHi, numEqual), diffIdentical)
		report_slices.go#L420: 			vx = vx.Slice(numEqual, vx.Len())
		report_slices.go#L421: 			vy = vy.Slice(numEqual, vy.Len())
		report_slices.go#L427: 		nx := appendChunks(vx.Slice(0, ds.NumIdentical+ds.NumRemoved+ds.NumModified), diffRemoved)
		report_slices.go#L428: 		vx = vx.Slice(nx, vx.Len())
		report_slices.go#L429: 		ny := appendChunks(vy.Slice(0, ds.NumIdentical+ds.NumInserted+ds.NumModified), diffInserted)
		report_slices.go#L430: 		vy = vy.Slice(ny, vy.Len())

	google.golang.org/protobuf/internal/impl
		convert_list.go#L131: 	ls.v.Elem().Set(ls.v.Elem().Slice(0, i))

	text/template
		funcs.go#L289: 		return item.Slice(idx[0], idx[1]), nil