-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Labels
Description
The Scala version might have the same problem:
hedgehogqa/haskell-hedgehog#313
scala-hedgehog/core/src/main/scala/hedgehog/Gen.scala
Lines 167 to 176 in 6d369c1
def list[A](gen: M[A], range: Range[Int])(implicit F: Monad[M], G: MonadGen[M]): M[List[A]] = sized(size => ensure( G.shrink( F.bind(integral_(range, _.toInt))(k => replicateM[M, A](k, gen)) , Shrink.list ) , Range.atLeast(range.lowerBound(size), _) ) ) def interleave[A](xs00: List[A], ys00: List[A]): List[List[A]] =
Reactions are currently unavailable