func reflect.Indirect

14 uses

	reflect (current package)
		type.go#L2531: 							var recv = Indirect(in[0])
		value.go#L2950: func Indirect(v Value) Value {

	database/sql
		convert.go#L400: 	dv := reflect.Indirect(dpv)

	encoding/binary
		binary.go#L380: 	v := reflect.Indirect(reflect.ValueOf(data))
		binary.go#L396: 	return dataSize(reflect.Indirect(reflect.ValueOf(v)))

	github.com/go-pg/pg/v10/orm
		table_params.go#L16: 	v = reflect.Indirect(v)
		util.go#L92: 	v = reflect.Indirect(v)
		util.go#L105: 	v = reflect.Indirect(v)

	github.com/go-pg/pg/v10/types
		array_scan.go#L54: 		v = reflect.Indirect(v)
		array_scan.go#L114: 	v = reflect.Indirect(v)
		array_scan.go#L151: 	v = reflect.Indirect(v)
		array_scan.go#L198: 	v = reflect.Indirect(v)
		array_scan.go#L245: 	v = reflect.Indirect(v)

	gotest.tools/v3/assert/cmp
		compare.go#L266: 		return fmt.Sprintf("%v (type %s) is not nil", reflect.Indirect(value), value.Type())