(self)
| 332 | return hash(self._ast) |
| 333 | |
| 334 | def __bool__(self) -> bool: |
| 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.""" |
nothing calls this directly
no outgoing calls
no test coverage detected