\brief constructor creates a Decimal64 from a BasicDecimal64
| 171 | |
| 172 | /// \brief constructor creates a Decimal64 from a BasicDecimal64 |
| 173 | constexpr Decimal64(const BasicDecimal64& value) noexcept // NOLINT runtime/explicit |
| 174 | : BasicDecimal64(value) {} |
| 175 | |
| 176 | explicit Decimal64(const BasicDecimal32& value) noexcept |
| 177 | : BasicDecimal64(static_cast<int64_t>(value.value())) {} |