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

Method unchecked_inc

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

Source from the content-addressed store, hash-verified

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;}
1852static public long unchecked_dec(long x){return x - 1;}
1853
1854static public Number unchecked_add(Object x, Object y){

Callers 1

unchecked_incMethod · 0.95

Calls 3

opsMethod · 0.95
incMethod · 0.95
unchecked_incMethod · 0.65

Tested by

no test coverage detected