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

Method lastIndexOf

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

Source from the content-addressed store, hash-verified

302 }
303
304 public int lastIndexOf(Object o) {
305 if (o instanceof Number) {
306 float f = ((Number) o).floatValue();
307 for (int j = array.length - 1; j >= i; j--)
308 if (f == array[j]) return j - i;
309 }
310 return -1;
311 }
312}
313
314static public class ArraySeq_double extends ASeq implements IndexedSeq, IReduce{

Callers

nothing calls this directly

Calls 1

floatValueMethod · 0.45

Tested by

no test coverage detected