JavaIteratorDeco

final implicit
class JavaIteratorDeco[T](val iterator: Iterator[T]) extends AnyVal

A wrapper around a Java iterator that throws a proper NoSuchElementException.

Proper in this case means an exception with a stack trace. This is intended to be used as a replacement for next() on the iterators returned from TinkerPop since those are missing stack traces.

class AnyVal
trait Matchable
class Any

Value members

Concrete methods

Concrete fields

val iterator: Iterator[T]