packages feed

fourmolu-0.16.1.0: data/examples/declaration/value/function/comprehension/transform-monad-out.hs

{-# LANGUAGE MonadComprehensions #-}
{-# LANGUAGE TransformListComp #-}

quux' xs ys =
  [ ( x,
      y
    )
  | x <- xs,
    y <- ys,
    then group by
      -- First comment
      ( x
          + y
      )
    using
      -- Second comment
      groupWith -- Third comment
  ]