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

Safe HaskellSafe
LanguageHaskell2010

FreeC.LiftedIR.Effect

Description

This module contains a data type for effect constraints.

Synopsis

Documentation

data Effect Source #

An effect constraint.

These effects corresponds to type classes constraining the container used by the Free monad. The order of the constructors in this data type determines the order of constraints in the generated function declarations.

The Sharing effect is the first effect by convention. All other effects are in alphabetical order by default.

Instances
Eq Effect Source # 
Instance details

Defined in FreeC.LiftedIR.Effect

Ord Effect Source # 
Instance details

Defined in FreeC.LiftedIR.Effect

Read Effect Source # 
Instance details

Defined in FreeC.LiftedIR.Effect

Show Effect Source # 
Instance details

Defined in FreeC.LiftedIR.Effect

FromJSON Effect

Restores an effect from the interface file.

Instance details

Defined in FreeC.Environment.ModuleInterface.Decoder

Methods

parseJSON :: Value -> Parser Effect

parseJSONList :: Value -> Parser [Effect]

ToJSON Effect 
Instance details

Defined in FreeC.Environment.ModuleInterface.Encoder

Methods

toJSON :: Effect -> Value

toEncoding :: Effect -> Encoding

toJSONList :: [Effect] -> Value

toEncodingList :: [Effect] -> Encoding