(long x)
| 1850 | static public long unchecked_minus(long x){return -x;} |
| 1851 | static public long unchecked_inc(long x){return x + 1;} |
| 1852 | static public long unchecked_dec(long x){return x - 1;} |
| 1853 | |
| 1854 | static public Number unchecked_add(Object x, Object y){ |
| 1855 | return ops(x).combine(ops(y)).unchecked_add((Number)x, (Number)y); |
no test coverage detected