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

Method pow10

Source/external/fast_float.h:2427–2430  ·  view source on GitHub ↗

multiply as if by 10 raised to a power.

Source from the content-addressed store, hash-verified

2425
2426 // multiply as if by 10 raised to a power.
2427 FASTFLOAT_CONSTEXPR20 bool pow10(uint32_t exp) noexcept {
2428 FASTFLOAT_TRY(pow5(exp));
2429 return pow2(exp);
2430 }
2431};
2432
2433} // namespace fast_float

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected