reflect.Type.Out (method)

16 uses

	reflect (current package)
		type.go#L217: 	Out(i int) Type

	github.com/go-pg/pg/v10/orm
		model_func.go#L36: 	if fnt.Out(0) != errorType {
		model_func.go#L37: 		panic(fmt.Errorf("ForEach must return an error, got %T", fnt.Out(0)))
		table.go#L533: 		retType := m.Type.Out(0)

	github.com/golang/mock/gomock
		call.go#L74: 			rets[i] = reflect.Zero(methodType.Out(i)).Interface()
		call.go#L183: 		if got, want := reflect.TypeOf(ret), mt.Out(i); got == want {

	github.com/google/go-cmp/cmp
		compare.go#L621: 				ss = append(ss, fmt.Sprintf("%v: %v => %v", t, tf.In(0), tf.Out(0)))
		options.go#L321: 	step := Transform{&transform{pathStep{typ: tr.fnc.Type().Out(0)}, tr}}

	github.com/google/go-cmp/cmp/internal/function
		func.go#L45: 		if ni == 1 && no == 1 && t.Out(0) == boolType {
		func.go#L49: 		if ni == 2 && no == 1 && t.In(0) == t.In(1) && t.Out(0) == boolType {
		func.go#L53: 		if ni == 2 && no == 1 && t.Out(0) == boolType {
		func.go#L57: 		if ni == 2 && no == 1 && t.In(0).AssignableTo(t.In(1)) && t.Out(0) == boolType {

	github.com/google/go-cmp/cmp/internal/value
		name.go#L83: 			b = appendTypeName(b, t.Out(0), qualified, false)
		name.go#L90: 				b = appendTypeName(b, t.Out(i), qualified, false)

	google.golang.org/protobuf/internal/descfmt
		stringer.go#L44: 			name = reflect.ValueOf(vs).MethodByName("Get").Type().Out(0).Name() + "s"

	text/template
		funcs.go#L118: 	case typ.NumOut() == 2 && typ.Out(1) == errorType: