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