Converts float to float. Parameters ---------- value : float value to be converted.
(self, value)
| 89 | return self._float_to_str(self.smallest_subnormal) |
| 90 | |
| 91 | def _float_to_float(self, value): |
| 92 | """Converts float to float. |
| 93 | |
| 94 | Parameters |
| 95 | ---------- |
| 96 | value : float |
| 97 | value to be converted. |
| 98 | """ |
| 99 | return _fr1(self._float_conv(value)) |
| 100 | |
| 101 | def _float_conv(self, value): |
| 102 | """Converts float to conv. |
no test coverage detected