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

Method equiv

src/jvm/clojure/lang/LazySeq.java:144–150  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

142}
143
144public boolean equiv(Object o){
145 ISeq s = seq();
146 if(s != null)
147 return s.equiv(o);
148 else
149 return (o instanceof Sequential || o instanceof List) && RT.seq(o) == null;
150}
151
152public int hashCode(){
153 ISeq s = seq();

Callers

nothing calls this directly

Calls 3

seqMethod · 0.95
seqMethod · 0.95
equivMethod · 0.65

Tested by

no test coverage detected