| 515 | } |
| 516 | |
| 517 | std::string Decimal32::ToIntegerString() const { |
| 518 | std::string result; |
| 519 | internal::StringFormatter<Int32Type> format; |
| 520 | format(value_, [&result](std::string_view formatted) { |
| 521 | result.append(formatted.data(), formatted.size()); |
| 522 | }); |
| 523 | return result; |
| 524 | } |
| 525 | |
| 526 | Decimal32::operator int64_t() const { return static_cast<int64_t>(value_); } |
| 527 |