(self)
| 100 | |
| 101 | @property |
| 102 | def bits(self): |
| 103 | return self.sign_bits + self.exp_bits + self.mantissa_bits |
| 104 | |
| 105 | def _is(self, sign: int, exp: int, mantissa: int): |
| 106 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected