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

Method contains

src/jvm/clojure/lang/ASeq.java:203–210  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

201}
202
203public boolean contains(Object o){
204 for(ISeq s = seq(); s != null; s = s.next())
205 {
206 if(Util.equiv(s.first(), o))
207 return true;
208 }
209 return false;
210}
211
212
213public Iterator iterator(){

Callers 1

containsAllMethod · 0.95

Calls 4

seqMethod · 0.95
nextMethod · 0.95
equivMethod · 0.95
firstMethod · 0.95

Tested by

no test coverage detected