\brief Empty constructor creates a decimal with a value of 0.
| 64 | |
| 65 | /// \brief Empty constructor creates a decimal with a value of 0. |
| 66 | constexpr GenericBasicDecimal() noexcept : array_({0}) {} |
| 67 | |
| 68 | /// \brief Create a decimal from the two's complement representation. |
| 69 | /// |