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

Method histCount

src/jvm/clojure/lang/Ref.java:220–230  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

218}
219
220int histCount(){
221 if(tvals == null)
222 return 0;
223 else
224 {
225 int count = 0;
226 for(TVal tv = tvals.next;tv != tvals;tv = tv.next)
227 count++;
228 return count;
229 }
230}
231
232final public IFn fn(){
233 return (IFn) deref();

Callers 2

getHistoryCountMethod · 0.95
runMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected