|
Scala example source code file (FreeTestJVM.scala)
The FreeTestJVM.scala Scala example source code
package scalaz
import std.AllInstances._
object FreeTestJVM extends SpecLite {
"foldMapRec is stack safe" ! {
val n = 1000000
trait FTestApi[A]
case class TB(i: Int) extends FTestApi[Int]
def a(i: Int): Free[FTestApi, Int] = for {
j <- Free.liftF(TB(i))
z <- if (j < n) a(j) else Free.pure[FTestApi, Int](j)
} yield z
val runner = new (FTestApi ~> Id.Id) {
def apply[A](fa: FTestApi[A]) = fa match {
case TB(i) => i + 1
}
}
a(0).foldMapRec(runner) must_=== n
}
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala FreeTestJVM.scala source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.