reflect.Value.Index (method)

37 uses

	reflect (current package)
		deepequal.go#L93: 			if !deepValueEqual(v1.Index(i), v2.Index(i), visited) {
		deepequal.go#L113: 			if !deepValueEqual(v1.Index(i), v2.Index(i), visited) {
		iter.go#L141: 				if !yield(ValueOf(i), v.Index(i)) {
		iter.go#L149: 				if !yield(ValueOf(i), v.Index(i)) {
		value.go#L453: 			slice.Index(i).Set(x)
		value.go#L1394: func (v Value) Index(i int) Value {
		value.go#L1606: 			if !v.Index(i).IsZero() {
		value.go#L2953: 		s.Index(n + i).Set(v)
		value.go#L3427: 				if !v.Index(i).Comparable() {
		value.go#L3505: 			if !v.Index(i).Equal(u.Index(i)) {

	crypto/x509
		verify.go#L525: 		constraint := excludedValue.Index(i).Interface()
		verify.go#L545: 		constraint := permittedValue.Index(i).Interface()

	encoding/asn1
		asn1.go#L650: 		offset, err = parseField(ret.Index(i), bytes, offset, params)
		marshal.go#L544: 			return makeField(v.Index(0), fp)
		marshal.go#L549: 				m[i], err = makeField(v.Index(i), fp)

	encoding/binary
		binary.go#L832: 			d.value(v.Index(i))
		binary.go#L854: 			d.value(v.Index(i))
		binary.go#L901: 			e.value(v.Index(i))
		binary.go#L919: 			e.value(v.Index(i))

	encoding/json
		decode.go#L555: 			if err := d.value(v.Index(i)); err != nil {
		decode.go#L581: 				v.Index(i).SetZero() // zero remainder of array
		encode.go#L858: 		ae.elemEnc(e, v.Index(i), opts)

	fmt
		print.go#L883: 						bytes[i] = byte(f.Index(i).Uint())
		print.go#L901: 				p.printValue(f.Index(i), verb, depth+1)
		print.go#L910: 				p.printValue(f.Index(i), verb, depth+1)
		scan.go#L1042: 				v.Index(i).SetUint(uint64(str[i]))

	github.com/oapi-codegen/runtime
		bindform.go#L156: 				if _, err := bindFormImpl(result.Index(i), form, files, fmt.Sprintf("%s[%v]", name, i)); err != nil {
		bindform.go#L161: 				if err := BindStringToObject(item, result.Index(indexedElementsCount+i).Addr().Interface()); err != nil {
		bindform.go#L295: 			elem := v.Index(i)
		bindparam.go#L242: 		err := BindStringToObject(p, newArray.Index(i).Addr().Interface())
		deepobject.go#L354: 		dstElem := dst.Index(i).Addr()
		styleparam.go#L94: 			sliceVal[i] = v.Index(i).Interface()

	internal/fmtsort
		sort.go#L118: 			if c := compare(aVal.Index(i), bVal.Index(i)); c != 0 {