Merge pull request #42 from jamie-allen/master
DocSpree git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@25297 5e8d7ff9-d8ef-0310-90f0-a4852d11357a
This commit is contained in:
commit
4bc6703f68
|
@ -508,7 +508,9 @@ self =>
|
|||
|
||||
}
|
||||
|
||||
/** See #3273 and test case run/bug3273 for motivation. */
|
||||
/** A specialized, extra-lazy implementation of a stream iterator, so it can
|
||||
* iterate as lazily as it traverses the tail.
|
||||
*/
|
||||
final class StreamIterator[+A](self: Stream[A]) extends Iterator[A] {
|
||||
// A call-by-need cell.
|
||||
class LazyCell(st: => Stream[A]) {
|
||||
|
|
Loading…
Reference in New Issue