(self)
| 3204 | return repr(self) |
| 3205 | |
| 3206 | def isNaN(self) -> bool: |
| 3207 | if isinstance(self._ast, FpLitNode): |
| 3208 | return math.isnan(struct.unpack("<d", struct.pack("<Q", self._ast.bits))[0]) |
| 3209 | return False |
| 3210 | |
| 3211 | def isInf(self) -> bool: |
| 3212 | if isinstance(self._ast, FpLitNode): |
no outgoing calls