normalize the big integer, so most-significant zero limbs are removed.
| 1789 | } |
| 1790 | // normalize the big integer, so most-significant zero limbs are removed. |
| 1791 | void normalize() noexcept { |
| 1792 | while (len() > 0 && rindex(0) == 0) { |
| 1793 | length--; |
| 1794 | } |
| 1795 | } |
| 1796 | }; |
| 1797 | |
| 1798 | fastfloat_really_inline |