StreamIterator<T> constructor Null safety

StreamIterator<T>(
  1. Stream<T> stream
)

Create a StreamIterator on stream.

Implementation

factory StreamIterator(Stream<T> stream)
    // TODO(lrn): use redirecting factory constructor when type
    // arguments are supported.
    =>
    new _StreamIterator<T>(stream);