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

Method equals

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

Source from the content-addressed store, hash-verified

161}
162
163public boolean equals(Object o){
164 ISeq s = seq();
165 if(s != null)
166 return s.equals(o);
167 else
168 return (o instanceof Sequential || o instanceof List) && RT.seq(o) == null;
169}
170
171
172// java.util.Collection implementation

Callers

nothing calls this directly

Calls 2

seqMethod · 0.95
seqMethod · 0.95

Tested by

no test coverage detected