Construct a variable-length tuple type
(self, t: Type)
| 1114 | return TupleType(list(a), self.fx.std_tuple) |
| 1115 | |
| 1116 | def var_tuple(self, t: Type) -> Instance: |
| 1117 | """Construct a variable-length tuple type""" |
| 1118 | return Instance(self.fx.std_tuplei, [t]) |
| 1119 | |
| 1120 | def callable(self, *a: Type) -> CallableType: |
| 1121 | """callable(a1, ..., an, r) constructs a callable with argument types |
no test coverage detected