Negation. \param arg operand \return negated operand
| 2540 | /// \param arg operand |
| 2541 | /// \return negated operand |
| 2542 | inline HALF_CONSTEXPR half operator-(half arg) { return half(detail::binary, arg.data_^0x8000); } |
| 2543 | |
| 2544 | /// Addition. |
| 2545 | /// This operation is exact to rounding for all rounding modes. |