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

Method equiv

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

Source from the content-addressed store, hash-verified

925 }
926
927 public boolean equiv(Number x, Number y){
928 return toBigInt(x).equals(toBigInt(y));
929 }
930
931 public boolean lt(Number x, Number y){
932 return toBigInt(x).lt(toBigInt(y));

Callers

nothing calls this directly

Calls 2

toBigIntMethod · 0.80
equalsMethod · 0.45

Tested by

no test coverage detected