\brief constructor creates a Decimal128 from a BasicDecimal128.
| 294 | |
| 295 | /// \brief constructor creates a Decimal128 from a BasicDecimal128. |
| 296 | constexpr Decimal128(const BasicDecimal128& value) noexcept // NOLINT runtime/explicit |
| 297 | : BasicDecimal128(value) {} |
| 298 | |
| 299 | /// \brief Parse the number from a base 10 string representation. |
| 300 | explicit Decimal128(const std::string& value); |
no outgoing calls