Return True if self is infinite; otherwise return False.
(self)
| 3090 | return not self._is_special |
| 3091 | |
| 3092 | def is_infinite(self): |
| 3093 | """Return True if self is infinite; otherwise return False.""" |
| 3094 | return self._exp == 'F' |
| 3095 | |
| 3096 | def is_nan(self): |
| 3097 | """Return True if self is a qNaN or sNaN; otherwise return False.""" |
no outgoing calls