(Object x, Object y)
| 258 | } |
| 259 | |
| 260 | static public boolean gt(Object x, Object y){ |
| 261 | return ops(x).combine(ops(y)).lt((Number)y, (Number)x); |
| 262 | } |
| 263 | |
| 264 | static public boolean gte(Object x, Object y){ |
| 265 | return ops(x).combine(ops(y)).gte((Number)x, (Number)y); |