| 457 | } |
| 458 | |
| 459 | Decimal64 Decimal64::ceil(DecimalStatus decSt) const |
| 460 | { |
| 461 | DecimalContext context(this, decSt); |
| 462 | Decimal64 rc; |
| 463 | decDoubleToIntegralValue(&rc.dec, &dec, &context, DEC_ROUND_CEILING); |
| 464 | return rc; |
| 465 | } |
| 466 | |
| 467 | Decimal64 Decimal64::floor(DecimalStatus decSt) const |
| 468 | { |