\brief constructor creates a Decimal256 from a BasicDecimal256.
| 416 | |
| 417 | /// \brief constructor creates a Decimal256 from a BasicDecimal256. |
| 418 | constexpr Decimal256(const BasicDecimal256& value) noexcept // NOLINT(runtime/explicit) |
| 419 | : BasicDecimal256(value) {} |
| 420 | |
| 421 | /// \brief Parse the number from a base 10 string representation. |
| 422 | explicit Decimal256(const std::string& value); |
no outgoing calls