An extFloat represents an extended floating-point number, with more precision than a float64. It does not try to save bits: the number represented by the structure is mant*(2^exp), with a negative sign if neg is true.
| 9 | // number represented by the structure is mant*(2^exp), with a negative |
| 10 | // sign if neg is true. |
| 11 | type extFloat struct { |
| 12 | mant uint64 |
| 13 | exp int |
| 14 | neg bool |
| 15 | } |
| 16 | |
| 17 | // Powers of ten taken from double-conversion library. |
| 18 | // http://code.google.com/p/double-conversion/ |
nothing calls this directly
no outgoing calls
no test coverage detected