(Number x, Number y)
| 820 | } |
| 821 | |
| 822 | public boolean lt(Number x, Number y){ |
| 823 | Ratio rx = toRatio(x); |
| 824 | Ratio ry = toRatio(y); |
| 825 | return Numbers.lt(rx.numerator.multiply(ry.denominator), ry.numerator.multiply(rx.denominator)); |
| 826 | } |
| 827 | |
| 828 | public boolean lte(Number x, Number y){ |
| 829 | Ratio rx = toRatio(x); |