Return True if self is a zero; otherwise return False.
(self)
| 3126 | return self.adjusted() < context.Emin |
| 3127 | |
| 3128 | def is_zero(self): |
| 3129 | """Return True if self is a zero; otherwise return False.""" |
| 3130 | return not self._is_special and self._int == '0' |
| 3131 | |
| 3132 | def _ln_exp_bound(self): |
| 3133 | """Compute a lower bound for the adjusted exponent of self.ln(). |
no outgoing calls