MCPcopy Create free account
hub / github.com/NVIDIAGameWorks/Falcor / normalize

Method normalize

external/include/fast_float/fast_float.h:1791–1795  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

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
1798fastfloat_really_inline

Callers 2

long_mulFunction · 0.45
bigintMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected