| 3354 | } |
| 3355 | |
| 3356 | fastfloat_really_inline FASTFLOAT_CONSTEXPR20 void |
| 3357 | add_native(bigint &big, limb power, limb value) noexcept { |
| 3358 | big.mul(power); |
| 3359 | big.add(value); |
| 3360 | } |
| 3361 | |
| 3362 | fastfloat_really_inline FASTFLOAT_CONSTEXPR20 void |
| 3363 | round_up_bigint(bigint &big, size_t &count) noexcept { |
no test coverage detected