Return the number of arguments.
(self)
| 938 | return self._name |
| 939 | |
| 940 | def arity(self) -> int: |
| 941 | """Return the number of arguments.""" |
| 942 | return len(self._domain) |
| 943 | |
| 944 | def domain(self, i: int) -> SortRef: |
| 945 | """Return the sort of the i-th argument.""" |
no outgoing calls