| 90 | |
| 91 | template<typename T> |
| 92 | inline const T DecimalValue<T>::whole_part(int scale) const { |
| 93 | return value() / DecimalUtil::GetScaleMultiplier<T>(scale); |
| 94 | } |
| 95 | |
| 96 | template<typename T> |
| 97 | inline const T DecimalValue<T>::fractional_part(int scale) const { |
no outgoing calls
no test coverage detected