
take 3 $ many $ Just 1
doesn't type check. Did you mean this?
take 3 <$> (many $ Just 1)
I think this may have something to do with the default definition of
many in the definition of Alternative
http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#Alter...:
many :: f http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#local...
a http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#local...
-> f http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#local...
[a http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#local...]many
http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#many
v http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#local...
= many_v http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#local...
where many_v
http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#local...
= some_v http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#local...
<|> http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#%3C%7...
pure http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#pure
[] some_v http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#local...
= (fmap http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#fmap
(:) v http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#local...)
<*> http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#%3C%2...
many_v http://hackage.haskell.org/package/base-4.9.0.0/docs/src/GHC.Base.html#local...
many_v and some_v are mutually recursive functions, and it may be that this
prevents the thunks from being made available to take in some way. I'm
really not sure though, this is just an idea about why this is not quite
the same as (take $ repeat 1)
On Thu, Sep 29, 2016 at 3:51 PM Corentin Dupont
Hi guys, I'm playing with the mysterious "some" and "many" from Control.Applicative. If I try:
many $ Just 1
It just loops, I understand why:
http://stackoverflow.com/questions/18108608/what-are-alternatives-some-and-m... It seems that some and many are usually used in a context where something is consumed, and can be depleted, so the loop ends.
But why doesn't this terminates?
take 3 $ many $ Just 1
It's a recursive call, but the construction of the result should be lazy...
_______________________________________________ Haskell-Cafe mailing list To (un)subscribe, modify options or view archives go to: http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe Only members subscribed via the mailman list are allowed to post.