(self)
| 600 | return str(Decimal(self._num) / Decimal(self._den)) |
| 601 | |
| 602 | def as_string(self) -> str: |
| 603 | return f"{self._num}/{self._den}" |
| 604 | |
| 605 | def as_long(self) -> int: |
| 606 | return self._num // self._den |
nothing calls this directly
no outgoing calls
no test coverage detected