Return True if self is a zero; otherwise return False.
(self)
| 3171 | return self.adjusted() < context.Emin |
| 3172 | |
| 3173 | def is_zero(self): |
| 3174 | """Return True if self is a zero; otherwise return False.""" |
| 3175 | return not self._is_special and self._int == '0' |
| 3176 | |
| 3177 | def _ln_exp_bound(self): |
| 3178 | """Compute a lower bound for the adjusted exponent of self.ln(). |
no outgoing calls
no test coverage detected