\brief Get the maximum decimal value (is not a valid value).
| 386 | |
| 387 | /// \brief Get the maximum decimal value (is not a valid value). |
| 388 | static constexpr BasicDecimal32 GetMaxSentinel() { |
| 389 | return BasicDecimal32(std::numeric_limits<int32_t>::max()); |
| 390 | } |
| 391 | |
| 392 | /// \brief Get the minimum decimal value (is not a valid value). |
| 393 | static constexpr BasicDecimal32 GetMinSentinel() { |
no test coverage detected