MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / normalize

Method normalize

Source/external/fast_float.h:1969–1973  ·  view source on GitHub ↗

normalize the big integer, so most-significant zero limbs are removed.

Source from the content-addressed store, hash-verified

1967 }
1968 // normalize the big integer, so most-significant zero limbs are removed.
1969 FASTFLOAT_CONSTEXPR14 void normalize() noexcept {
1970 while (len() > 0 && rindex(0) == 0) {
1971 length--;
1972 }
1973 }
1974};
1975
1976fastfloat_really_inline FASTFLOAT_CONSTEXPR14

Callers 2

long_mulFunction · 0.45
bigintMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected