()
| 642 | } |
| 643 | |
| 644 | public boolean hasNext () { |
| 645 | if (!valid) throw new GdxRuntimeException("#iterator() cannot be used nested."); |
| 646 | return hasNext; |
| 647 | } |
| 648 | |
| 649 | public @Null V next () { |
| 650 | if (!hasNext) throw new NoSuchElementException(); |
no outgoing calls