(Number x, Number y)
| 826 | } |
| 827 | |
| 828 | public boolean lte(Number x, Number y){ |
| 829 | Ratio rx = toRatio(x); |
| 830 | Ratio ry = toRatio(y); |
| 831 | return Numbers.lte(rx.numerator.multiply(ry.denominator), ry.numerator.multiply(rx.denominator)); |
| 832 | } |
| 833 | |
| 834 | public boolean gte(Number x, Number y){ |
| 835 | Ratio rx = toRatio(x); |