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

Method containsAll

src/jvm/clojure/lang/LazySeq.java:202–209  ·  view source on GitHub ↗
(Collection c)

Source from the content-addressed store, hash-verified

200}
201
202public boolean containsAll(Collection c){
203 for(Object o : c)
204 {
205 if(!contains(o))
206 return false;
207 }
208 return true;
209}
210
211public Object[] toArray(Object[] a){
212 return RT.seqToPassedArray(seq(), a);

Callers

nothing calls this directly

Calls 1

containsMethod · 0.95

Tested by

no test coverage detected