(int i, Object notFound)
| 181 | } |
| 182 | |
| 183 | public Object nth(int i, Object notFound){ |
| 184 | if(i >= 0 && i < count()) |
| 185 | return nth(i); |
| 186 | return notFound; |
| 187 | } |
| 188 | |
| 189 | public Object remove(int i){ |
| 190 | throw new UnsupportedOperationException(); |
no test coverage detected