(Object o)
| 716 | } |
| 717 | |
| 718 | public int lastIndexOf(Object o) { |
| 719 | if (o instanceof Short) { |
| 720 | short s = ((Short) o).shortValue(); |
| 721 | for (int j = array.length - 1; j >= i; j--) |
| 722 | if (s == array[j]) return j - i; |
| 723 | } |
| 724 | if (o == null) { |
| 725 | return -1; |
| 726 | } |
| 727 | for (int j = array.length - 1; j >= i; j--) |
| 728 | if (o.equals(array[j])) return j - i; |
| 729 | return -1; |
| 730 | } |
| 731 | } |
| 732 | |
| 733 | static public class ArraySeq_boolean extends ASeq implements IndexedSeq, IReduce{ |
nothing calls this directly
no test coverage detected