arrowp-qq-0.1: quasiquoter translating arrow notation into Haskell 98

Safe HaskellNone
LanguageHaskell2010

Control.Arrow.QuasiQuoter

Synopsis

Documentation

proc :: QuasiQuoter Source #

A quasiquoter for arrow notation. To be used as follows:

     arr f = BST [proc| (b, s) -> do
			returnA -< (f b, s) |]
  

parseModuleWithMode :: ParseMode -> String -> ParseResult HsModule Source #

Parse of a string, which should contain a complete Haskell 98 module.