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

Method count

src/jvm/clojure/lang/LazySeq.java:108–113  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

106}
107
108public int count(){
109 int c = 0;
110 for(ISeq s = seq(); s != null; s = s.next())
111 ++c;
112 return c;
113}
114
115public Object first(){
116 seq();

Callers 1

sizeMethod · 0.95

Calls 2

seqMethod · 0.95
nextMethod · 0.95

Tested by

no test coverage detected