(Object x)
| 188 | } |
| 189 | |
| 190 | static public boolean isInteger(Object x){ |
| 191 | return x instanceof Integer |
| 192 | || x instanceof Long |
| 193 | || x instanceof BigInt |
| 194 | || x instanceof BigInteger; |
| 195 | } |
| 196 | |
| 197 | static public Object ret1(Object ret, Object nil){ |
| 198 | return ret; |