Multiply by power of two. This function is exact to rounding for all rounding modes. See also:** Documentation for [std::scalbn](https://en.cppreference.com/w/cpp/numeric/math/scalbn). \param arg number to modify \param exp power of two to multiply with \return \a arg multplied by 2 raised to \a exp \exception FE_INVALID for signaling NaN \exception FE_OVERFLOW, ...UNDERFLOW, ...INEXACT according
| 4172 | /// \exception FE_INVALID for signaling NaN |
| 4173 | /// \exception FE_OVERFLOW, ...UNDERFLOW, ...INEXACT according to rounding |
| 4174 | inline half scalbn(half arg, int exp) { return scalbln(arg, exp); } |
| 4175 | |
| 4176 | /// Multiply by power of two. |
| 4177 | /// This function is exact to rounding for all rounding modes. |