Open BSteffaniak opened 7 years ago
e.g.
if (hasNext) { return position++ } throw new NoSuchElementException()
could be written as
hasNext ? position++ : throw new NoSuchElementException()
e.g.
could be written as