Conversion constructor. \param rhs float to convert \exception FE_OVERFLOW, ...UNDERFLOW, ...INEXACT according to rounding
| 2067 | /// \param rhs float to convert |
| 2068 | /// \exception FE_OVERFLOW, ...UNDERFLOW, ...INEXACT according to rounding |
| 2069 | explicit half(float rhs) : data_(static_cast<detail::uint16>(detail::float2half<round_style>(rhs))) {} |
| 2070 | |
| 2071 | /// Conversion to single-precision. |
| 2072 | /// \return single precision value representing expression value |
nothing calls this directly
no outgoing calls
no test coverage detected