Number of arguments (children) of this expression.
(self)
| 335 | raise TypeError("Symbolic expressions cannot be cast to concrete Boolean values") |
| 336 | |
| 337 | def num_args(self) -> int: |
| 338 | """Number of arguments (children) of this expression.""" |
| 339 | return len(_ast_children(self._ast)) |
| 340 | |
| 341 | def arg(self, i: int) -> ExprRef: |
| 342 | """Return the i-th argument of this expression.""" |