multiply as if by 2 raised to a power.
| 2388 | |
| 2389 | // multiply as if by 2 raised to a power. |
| 2390 | FASTFLOAT_CONSTEXPR20 bool pow2(uint32_t exp) noexcept { |
| 2391 | return shl(exp); |
| 2392 | } |
| 2393 | |
| 2394 | // multiply as if by 5 raised to a power. |
| 2395 | FASTFLOAT_CONSTEXPR20 bool pow5(uint32_t exp) noexcept { |
no outgoing calls
no test coverage detected