| 2668 | } |
| 2669 | |
| 2670 | fastfloat_really_inline |
| 2671 | void add_native(bigint& big, limb power, limb value) noexcept { |
| 2672 | big.mul(power); |
| 2673 | big.add(value); |
| 2674 | } |
| 2675 | |
| 2676 | fastfloat_really_inline void round_up_bigint(bigint& big, size_t& count) noexcept { |
| 2677 | // need to round-up the digits, but need to avoid rounding |
no test coverage detected