free-compiler-0.3.0.0: A Haskell to Coq compiler.

Safe HaskellNone
LanguageHaskell2010

FreeC.Backend.Agda.Converter.Free

Description

This module contains auxilary functions that help to generate Coq code that uses the Free monad.

Synopsis

Documentation

generatePure :: Expr -> Expr Source #

Applies the pure constructor of the free monad to the given expression.

pure is always imported and therefore doesn't need to be qualified.

bind :: Expr -> Expr -> Expr Source #

The infix >>= operator.

free :: Expr -> Expr Source #

Lifts a type in the free monad.

applyFreeArgs :: QName -> Expr Source #

Apply the Shape and Pos argument to the given type constructor.

c ↦ c Shape Pos

addFreeArgs :: [Name] -> [Name] Source #

Adds the reserved names for the free args Shape and Pos to a list of names.

freeArgBinder :: [LamBinding] Source #

Binder for the type arguments of the Free monad.

(Shape : Set) (Pos : Shape → Set)

undefinedExpr :: Expr Source #

The identifier for the error term undefined.

errorExpr :: Expr Source #

The identifier for the error term error.

addPartial :: Expr -> Expr Source #

Adds an instance argument for the partial type class to the given function type.

τ ↦ ⦃ Partial Shape Pos ⦄ → τ