(Number x, Number y)
| 780 | } |
| 781 | |
| 782 | final public Number multiply(Number x, Number y){ |
| 783 | Ratio rx = toRatio(x); |
| 784 | Ratio ry = toRatio(y); |
| 785 | Number ret = Numbers.divide(ry.numerator.multiply(rx.numerator) |
| 786 | , ry.denominator.multiply(rx.denominator)); |
| 787 | return normalizeRet(ret, x, y); |
| 788 | } |
| 789 | |
| 790 | public Number divide(Number x, Number y){ |
| 791 | Ratio rx = toRatio(x); |
nothing calls this directly
no test coverage detected