frexp10Many applies a common shift by a power of ten to a, b, c.
(a, b, c *extFloat)
| 366 | |
| 367 | // frexp10Many applies a common shift by a power of ten to a, b, c. |
| 368 | func frexp10Many(a, b, c *extFloat) (exp10 int) { |
| 369 | exp10, i := c.frexp10() |
| 370 | a.Multiply(powersOfTen[i]) |
| 371 | b.Multiply(powersOfTen[i]) |
| 372 | return |
| 373 | } |
| 374 | |
| 375 | // FixedDecimal stores in d the first n significant digits |
| 376 | // of the decimal representation of f. It returns false |
no test coverage detected
searching dependent graphs…