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

Method remainder

src/jvm/clojure/lang/BigInt.java:172–177  ·  view source on GitHub ↗
(BigInt y)

Source from the content-addressed store, hash-verified

170}
171
172public BigInt remainder(BigInt y) {
173 if ((bipart == null) && (y.bipart == null)) {
174 return BigInt.valueOf(lpart % y.lpart);
175 }
176 return BigInt.fromBigInteger(this.toBigInteger().remainder(y.toBigInteger()));
177}
178
179public boolean lt(BigInt y) {
180 if ((bipart == null) && (y.bipart == null)) {

Callers

nothing calls this directly

Calls 4

valueOfMethod · 0.95
fromBigIntegerMethod · 0.95
toBigIntegerMethod · 0.95
remainderMethod · 0.65

Tested by

no test coverage detected