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

Method nth

src/jvm/clojure/lang/APersistentVector.java:183–187  ·  view source on GitHub ↗
(int i, Object notFound)

Source from the content-addressed store, hash-verified

181}
182
183public Object nth(int i, Object notFound){
184 if(i >= 0 && i < count())
185 return nth(i);
186 return notFound;
187}
188
189public Object remove(int i){
190 throw new UnsupportedOperationException();

Callers 15

hashCodeMethod · 0.95
hasheqMethod · 0.95
getMethod · 0.95
indexOfMethod · 0.95
lastIndexOfMethod · 0.95
nextMethod · 0.95
previousMethod · 0.95
tryAdvanceMethod · 0.95
forEachRemainingMethod · 0.95
invokeMethod · 0.95
peekMethod · 0.95
entryAtMethod · 0.95

Calls 1

countMethod · 0.65

Tested by

no test coverage detected