(Object o)
| 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 | |
| 472 | static public class ArraySeq_byte extends ASeq implements IndexedSeq, IReduce{ |