MCPcopy Index your code
hub / github.com/clojure/clojure / unchecked_minus

Method unchecked_minus

src/jvm/clojure/lang/Numbers.java:1848–1848  ·  view source on GitHub ↗
(long x, long y)

Source from the content-addressed store, hash-verified

1846
1847static public long unchecked_add(long x, long y){return x + y;}
1848static public long unchecked_minus(long x, long y){return x - y;}
1849static public long unchecked_multiply(long x, long y){return x * y;}
1850static public long unchecked_minus(long x){return -x;}
1851static public long unchecked_inc(long x){return x + 1;}

Callers 1

unchecked_negateMethod · 0.95

Calls 5

opsMethod · 0.95
unchecked_negateMethod · 0.95
minusMethod · 0.95
unchecked_addMethod · 0.65
combineMethod · 0.65

Tested by

no test coverage detected