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

Method equals

src/jvm/clojure/lang/Util.java:128–132  ·  view source on GitHub ↗
(Object k1, Object k2)

Source from the content-addressed store, hash-verified

126}
127
128static public boolean equals(Object k1, Object k2){
129 if(k1 == k2)
130 return true;
131 return k1 != null && k1.equals(k2);
132}
133
134static public boolean identical(Object k1, Object k2){
135 return k1 == k2;

Callers 15

equalsMethod · 0.95
equalsMethod · 0.95
doEqualsMethod · 0.95
equalsMethod · 0.95
maybeClassMethod · 0.95
parseMethod · 0.95
parseMethod · 0.95
evalMethod · 0.95
resolveInMethod · 0.95
compile1Method · 0.95
mapEqualsMethod · 0.95
containsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected