(self)
| 3209 | return False |
| 3210 | |
| 3211 | def isInf(self) -> bool: |
| 3212 | if isinstance(self._ast, FpLitNode): |
| 3213 | return math.isinf(struct.unpack("<d", struct.pack("<Q", self._ast.bits))[0]) |
| 3214 | return False |
| 3215 | |
| 3216 | def isZero(self) -> bool: |
| 3217 | if isinstance(self._ast, FpLitNode): |
no outgoing calls