<div dir="ltr"><div><div><div><div><div><div><div>Hi,<br><br></div>I raised this question on #haskell, and was advised that this was probably the best place to discuss.<br><br></div>I see that Applicative Do is scheduled for GHC 8.0 [1], and was hoping that this might also enable support for Applicative Comprehensions [2]. Is this likely to be the case? If not, would it be difficult to extend the support for Applicative Do to also handle comprehensions? I'm willing to submit patches if necessary, but I'm not at all familiar with GHC internals, so would need some guidance.<br><br></div>I understand that comprehensions tend not to be used much in idiomatic Haskell, but I find them to be useful for implementing DSLs, so would really like to see this be supported. For example, a matrix could be written in a familiar notation:<br><br></div>> [ i + 2*j | i <- rows, j <- cols ]<br><br></div>which is a little more readable (to those not familiar with Haskell) than<br><br></div>> (\i j -> i + 2*j) <$> row <*> cols<br><br></div>or<br><div><br><div><div><div><div>> do { i <- rows; j <- cols; return (i + 2*j) }<br><br></div><div>[1] <a href="https://ghc.haskell.org/trac/ghc/wiki/Status/GHC-8.0.1#LandedinHEAD">https://ghc.haskell.org/trac/ghc/wiki/Status/GHC-8.0.1#LandedinHEAD</a><br>[2] <a href="https://ghc.haskell.org/trac/ghc/wiki/GeneralizedMonadComprehensions#Applicativefunctor">https://ghc.haskell.org/trac/ghc/wiki/GeneralizedMonadComprehensions#Applicativefunctor</a><br><br></div></div></div></div></div></div><div dir="ltr">-- <br></div><div dir="ltr"><div>David A Roberts<br></div><a href="https://davidar.io">https://davidar.io</a><br></div>