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