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

Method lt

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

Source from the content-addressed store, hash-verified

177}
178
179public boolean lt(BigInt y) {
180 if ((bipart == null) && (y.bipart == null)) {
181 return lpart < y.lpart;
182 }
183 return this.toBigInteger().compareTo(y.toBigInteger()) < 0;
184}
185
186}

Callers

nothing calls this directly

Calls 2

toBigIntegerMethod · 0.95
compareToMethod · 0.45

Tested by

no test coverage detected