Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
165
public
Object nth(
int
i){
166
Object[] node = arrayFor(i);
167
return
node[i & 0x01f];
168
}
169
170
public
Object nth(
int
i, Object notFound){
171
if
(i >= 0 && i < cnt)
Callers
3
parse
Method · 0.95
parse
Method · 0.95
parse
Method · 0.95
Calls
1
arrayFor
Method · 0.95
Tested by
no test coverage detected