()
| 258 | } |
| 259 | |
| 260 | public Object next(){ |
| 261 | if(fseq != null) |
| 262 | { |
| 263 | Object ret = fseq.first(); |
| 264 | fseq = fseq.next(); |
| 265 | return ret; |
| 266 | } |
| 267 | else if(riter != null && riter.hasNext()) |
| 268 | return riter.next(); |
| 269 | else |
| 270 | throw new NoSuchElementException(); |
| 271 | } |
| 272 | |
| 273 | public void remove(){ |
| 274 | throw new UnsupportedOperationException(); |