We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6faa07 commit fc10c4cCopy full SHA for fc10c4c
src/library/scala/collection/immutable/Stream.scala
@@ -508,7 +508,9 @@ self =>
508
509
}
510
511
-/** See #3273 and test case run/bug3273 for motivation. */
+/** A specialized, extra-lazy implementation of a stream iterator, so it can
512
+ * iterate as lazily as it traverses the tail.
513
+ */
514
final class StreamIterator[+A](self: Stream[A]) extends Iterator[A] {
515
// A call-by-need cell.
516
class LazyCell(st: => Stream[A]) {
0 commit comments