(Object o)
| 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 | |
| 393 | static public class ArraySeq_long extends ASeq implements IndexedSeq, IReduce{ |
nothing calls this directly
no test coverage detected