Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/clojure/clojure
/ lastIndexOf
Method
lastIndexOf
src/jvm/clojure/lang/APersistentVector.java:200–205 ·
view source on GitHub ↗
(Object o)
Source
from the content-addressed store, hash-verified
198
}
199
200
public
int
lastIndexOf(Object o){
201
for
(
int
i = count() - 1; i >= 0; i--)
202
if
(Util.equiv(nth(i), o))
203
return
i;
204
return
-1;
205
}
206
207
public
ListIterator listIterator(){
208
return
listIterator(0);
Callers
nothing calls this directly
Calls
3
equiv
Method · 0.95
nth
Method · 0.95
count
Method · 0.65
Tested by
no test coverage detected