Closed kosmikus closed 9 years ago
Yes, this is a similar situation as in the other file. You want a monadic/applicative map which isn't directly available. However, you can use a normal map (hliftA) followed by sequencing (hsequence') to get the same effect.
hliftA
hsequence'
Thanks very much.
Yes, this is a similar situation as in the other file. You want a monadic/applicative map which isn't directly available. However, you can use a normal map (
hliftA
) followed by sequencing (hsequence'
) to get the same effect.