internal/abi.FuncType.OutCount (field)

15 uses

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

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

	reflect
		type.go#L889: 	if f.InCount != 1 || f.OutCount != 0 {
		type.go#L897: 	return yield.InCount == 1 && yield.OutCount == 1 && yield.Out(0).Kind() == abi.Bool
		type.go#L917: 	if f.InCount != 1 || f.OutCount != 0 {
		type.go#L925: 	return yield.InCount == 2 && yield.OutCount == 1 && yield.Out(0).Kind() == abi.Bool
		type.go#L1575: 		if t.OutCount != v.OutCount || t.InCount != v.InCount {
		type.go#L1884: 	ft.OutCount = uint16(len(out))
		type.go#L1886: 		ft.OutCount |= 1 << 15

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