| 4271 | } |
| 4272 | |
| 4273 | fastfloat_really_inline FASTFLOAT_CONSTEXPR20 void |
| 4274 | add_native(bigint &big, limb power, limb value) noexcept { |
| 4275 | big.mul(power); |
| 4276 | big.add(value); |
| 4277 | } |
| 4278 | |
| 4279 | fastfloat_really_inline FASTFLOAT_CONSTEXPR20 void |
| 4280 | round_up_bigint(bigint &big, size_t &count) noexcept { |
no test coverage detected