\brief Get the minimum decimal value (is not a valid value).
| 391 | |
| 392 | /// \brief Get the minimum decimal value (is not a valid value). |
| 393 | static constexpr BasicDecimal32 GetMinSentinel() { |
| 394 | return BasicDecimal32(std::numeric_limits<int32_t>::min()); |
| 395 | } |
| 396 | |
| 397 | /// \brief Scale multiplier for a given scale value. |
| 398 | static const BasicDecimal32& GetScaleMultiplier(int32_t scale); |
no test coverage detected