(Object x, Object y)
| 262 | } |
| 263 | |
| 264 | static public boolean gte(Object x, Object y){ |
| 265 | return ops(x).combine(ops(y)).gte((Number)x, (Number)y); |
| 266 | } |
| 267 | |
| 268 | static public int compare(Number x, Number y){ |
| 269 | Ops ops = ops(x).combine(ops(y)); |
no test coverage detected