Converts float to conv. Parameters ---------- value : float value to be converted.
(self, value)
| 99 | return _fr1(self._float_conv(value)) |
| 100 | |
| 101 | def _float_conv(self, value): |
| 102 | """Converts float to conv. |
| 103 | |
| 104 | Parameters |
| 105 | ---------- |
| 106 | value : float |
| 107 | value to be converted. |
| 108 | """ |
| 109 | return array([value], self.ftype) |
| 110 | |
| 111 | def _float_to_str(self, value): |
| 112 | """Converts float to str. |
no test coverage detected