Return the sort of the i-th argument.
(self, i: int)
| 942 | return len(self._domain) |
| 943 | |
| 944 | def domain(self, i: int) -> SortRef: |
| 945 | """Return the sort of the i-th argument.""" |
| 946 | return self._domain[i] |
| 947 | |
| 948 | def range(self) -> SortRef: |
| 949 | """Return the range (return) sort.""" |
no outgoing calls