Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
FreeC.LiftedIR.Effect
Description
This module contains a data type for effect constraints.
Synopsis
- data Effect
- = Sharing
- | Normalform
- | Partiality
- | Tracing
- | NonDet
Documentation
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.
Constructors
Sharing | |
Normalform | |
Partiality | |
Tracing | |
NonDet |
Instances
Eq Effect Source # | |
Ord Effect Source # | |
Read Effect Source # | |
Show Effect Source # | |
FromJSON Effect | Restores an effect from the interface file. |
Defined in FreeC.Environment.ModuleInterface.Decoder | |
ToJSON Effect | |
Defined in FreeC.Environment.ModuleInterface.Encoder Methods toEncoding :: Effect -> Encoding toJSONList :: [Effect] -> Value toEncodingList :: [Effect] -> Encoding |