()
| 202 | } |
| 203 | |
| 204 | public Object next() { |
| 205 | if (hasNext()) { |
| 206 | Object ret = next; |
| 207 | next = Numbers.addP(next, step); |
| 208 | return ret; |
| 209 | } else { |
| 210 | throw new NoSuchElementException(); |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | public void remove() { |
| 215 | throw new UnsupportedOperationException(); |