internal/abi.FuncType.OutCount (field)

15 uses

	internal/abi (current package)
		type.go#L524: 	OutCount uint16 // top bit is set if last input parameter is ...
		type.go#L536: 	return int(t.OutCount & (1<<15 - 1))
		type.go#L566: 	return t.OutCount&(1<<15) != 0

	internal/reflectlite
		type.go#L568: 		if t.OutCount != v.OutCount || t.InCount != v.InCount {

	reflect
		type.go#L901: 	if f.InCount != 1 || f.OutCount != 0 {
		type.go#L909: 	return yield.InCount == 1 && yield.OutCount == 1 && yield.Out(0).Kind() == abi.Bool
		type.go#L929: 	if f.InCount != 1 || f.OutCount != 0 {
		type.go#L937: 	return yield.InCount == 2 && yield.OutCount == 1 && yield.Out(0).Kind() == abi.Bool
		type.go#L1569: 		if t.OutCount != v.OutCount || t.InCount != v.InCount {
		type.go#L1951: 	ft.OutCount = uint16(len(out))
		type.go#L1953: 		ft.OutCount |= 1 << 15

	runtime
		type.go#L396: 		if ft.OutCount != fv.OutCount || ft.InCount != fv.InCount {