| 973 | } |
| 974 | |
| 975 | Decimal128 Decimal128::ln(DecimalStatus decSt) const |
| 976 | { |
| 977 | decNumber dn; |
| 978 | decQuadToNumber(&dec, &dn); |
| 979 | |
| 980 | DecimalContext context(this, decSt); |
| 981 | decNumberLn(&dn, &dn, &context); |
| 982 | |
| 983 | Decimal128 rc; |
| 984 | decQuadFromNumber(&rc.dec, &dn, &context); |
| 985 | return rc; |
| 986 | } |
| 987 | |
| 988 | Decimal128 Decimal128::log10(DecimalStatus decSt) const |
| 989 | { |
no test coverage detected