(long x, long y)
| 1847 | static public long unchecked_add(long x, long y){return x + y;} |
| 1848 | static public long unchecked_minus(long x, long y){return x - y;} |
| 1849 | static public long unchecked_multiply(long x, long y){return x * y;} |
| 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;} |
no test coverage detected