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

Method lastIndexOf

src/jvm/clojure/lang/ArraySeq.java:461–469  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

459 }
460
461 public int lastIndexOf(Object o) {
462 if (o instanceof Number) {
463 long l = ((Number) o).longValue();
464 for (int j = array.length - 1; j >= i; j--)
465 if (l == array[j]) return j - i;
466 }
467
468 return -1;
469 }
470}
471
472static public class ArraySeq_byte extends ASeq implements IndexedSeq, IReduce{

Callers

nothing calls this directly

Calls 1

longValueMethod · 0.45

Tested by

no test coverage detected