| 41 | } |
| 42 | |
| 43 | std::string Decimal32Array::FormatValue(int64_t i) const { |
| 44 | const auto& type_ = checked_cast<const Decimal32Type&>(*type()); |
| 45 | const Decimal32 value(GetValue(i)); |
| 46 | return value.ToString(type_.scale()); |
| 47 | } |
| 48 | |
| 49 | // ---------------------------------------------------------------------- |
| 50 | // Decimal64 |