\brief Absolute value
| 283 | |
| 284 | /// \brief Absolute value |
| 285 | static BasicDecimal32 Abs(const BasicDecimal32& in) { |
| 286 | BasicDecimal32 result(in); |
| 287 | return result.Abs(); |
| 288 | } |
| 289 | |
| 290 | /// \brief Add a number to this one. The result is truncated to 32 bits. |
| 291 | BasicDecimal32& operator+=(const BasicDecimal32& right) { |