Re: StackOverFlowError When Applying Filter to a Stream
Simon Schäfer <[email protected]>
| Newsgroups | gmane.comp.lang.scala |
|---|---|
| Message-ID | <[email protected]> |
The first time, the filter is part of fibs, the second time it is part of another stream accessing fibs. In the first case there are simply not enough values left to continue the stream. On 05.08.2015 20:16, [email protected] wrote: > > Hello, > > > Please can some one explain why the following code blows the stack: > > | > | > |val fibs: Stream[BigInt] = BigInt(0) #:: BigInt(1) #:: fibs.zip(fibs.tail).map{ n=> n._1+ n._2}.takeWhile(x=> x< 4000000).filter(x=> x% 2 == 0) > > scala> fibs foreach println > 0 > 1 > java.lang.StackOverflowError| > > If I take out the filter and apply it to the stream in another > expression as follows, it is fine: > > |scala> val fibs: Stream[BigInt] = BigInt(0) #:: BigInt(1) #:: fibs.zip(fibs.tail).map{ n=> n._1+ n._2}.takeWhile(x=> x< 4000000) > fibs: Stream[scala.math.BigInt] = Stream(0, ?) > > scala> fibs filter( x=> x% 2 == 0) > res8: scala.collection.immutable.Stream[scala.math.BigInt] = Stream(0, ?) > > scala> fibs filter( x=> x% 2 == 0) foreach println > 0 > 2 > 8 > 34 > 144 > 610 > 2584 > 10946 > 46368 > 196418 > 832040 > 3524578| > > Why does it blow the stack with the first approach but not the second? > > > Thanks > > Iftikhar > > -- > You received this message because you are subscribed to the Google > Groups "scala-language" group. > To unsubscribe from this group and stop receiving emails from it, send > an email to [email protected] > <mailto:[email protected]>. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "scala-language" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.