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

Method reduceBigInt

src/jvm/clojure/lang/Numbers.java:374–380  ·  view source on GitHub ↗
(BigInt val)

Source from the content-addressed store, hash-verified

372//}
373
374@WarnBoxedMath(false)
375static public Number reduceBigInt(BigInt val){
376 if(val.bipart == null)
377 return num(val.lpart);
378 else
379 return val.bipart;
380}
381
382static public Number divide(BigInteger n, BigInteger d){
383 if(d.equals(BigInteger.ZERO))

Callers 2

matchNumberMethod · 0.95
matchNumberMethod · 0.95

Calls 1

numMethod · 0.95

Tested by

no test coverage detected