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

Method lastIndexOf

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

Source from the content-addressed store, hash-verified

380 }
381
382 public int lastIndexOf(Object o) {
383 if (o instanceof Number) {
384 double d = ((Number) o).doubleValue();
385 for (int j = array.length - 1; j >= i; j--)
386 if (d == array[j]) return j - i;
387 }
388
389 return -1;
390 }
391}
392
393static public class ArraySeq_long extends ASeq implements IndexedSeq, IReduce{

Callers

nothing calls this directly

Calls 1

doubleValueMethod · 0.45

Tested by

no test coverage detected