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

Method tailoff

src/jvm/clojure/lang/PersistentVector.java:146–150  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

144}
145
146final int tailoff(){
147 if(cnt < 32)
148 return 0;
149 return ((cnt - 1) >>> 5) << 5;
150}
151
152public Object[] arrayFor(int i){
153 if(i >= 0 && i < cnt)

Callers 4

arrayForMethod · 0.95
assocNMethod · 0.95
consMethod · 0.95
popMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected