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

Method nth

src/jvm/clojure/lang/PersistentVector.java:165–168  ·  view source on GitHub ↗
(int i)

Source from the content-addressed store, hash-verified

163}
164
165public Object nth(int i){
166 Object[] node = arrayFor(i);
167 return node[i & 0x01f];
168}
169
170public Object nth(int i, Object notFound){
171 if(i >= 0 && i < cnt)

Callers 3

parseMethod · 0.95
parseMethod · 0.95
parseMethod · 0.95

Calls 1

arrayForMethod · 0.95

Tested by

no test coverage detected