\brief constructor creates a Decimal32 from a BasicDecimal32
| 66 | |
| 67 | /// \brief constructor creates a Decimal32 from a BasicDecimal32 |
| 68 | constexpr Decimal32(const BasicDecimal32& value) noexcept // NOLINT runtime/explicit |
| 69 | : BasicDecimal32(value) {} |
| 70 | |
| 71 | /// \brief Parse the number from a base 10 string representation |
| 72 | explicit Decimal32(const std::string& value); |
no outgoing calls