(Object x, Object y)
| 254 | } |
| 255 | |
| 256 | static public boolean lte(Object x, Object y){ |
| 257 | return ops(x).combine(ops(y)).lte((Number)x, (Number)y); |
| 258 | } |
| 259 | |
| 260 | static public boolean gt(Object x, Object y){ |
| 261 | return ops(x).combine(ops(y)).lt((Number)y, (Number)x); |
no test coverage detected