-
Notifications
You must be signed in to change notification settings - Fork 11
/
effect-monad.cabal
68 lines (56 loc) · 2.74 KB
/
effect-monad.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: effect-monad
version: 0.8.0.0
synopsis: Embeds effect systems and program logics into Haskell using graded monads and parameterised monads
description:
Provides the graded monad structure to Haskell via Control.Effect
with a number of analogs of familiar monads and some new things:
Reader, Writer, State, Maybe, Counter, Update
and a wrapper over normal monads (Control.Effect.Monad). This provides a way
to embed effect systems into Haskell. For more information see the paper
\"Embedding effect systems in Haskell\" by Orchard and Petricek
<http://dorchard.co.uk/publ/haskell14-effects.pdf> (Haskell, 2014)
Also provides the parameterised monad structure due to Atkey in
Control.Effect.Parameterised along with some instances:
AtomicState, SafeFiles, ExtensibleState
and the examples in <https://github.com/dorchard/effect-monad/tree/master/examples>.
(note, this package was previously called 'ixmonad' until September 2014).
license: BSD3
license-file: LICENSE
category: Control, Monads
copyright: 2013-18 University of Kent
author: Dominic Orchard
maintainer: Dominic Orchard
stability: experimental
build-type: Simple
cabal-version: >= 1.6
tested-with: GHC == 7.10.3, GHC == 8.0.1, GHC == 8.2.2
extra-source-files: examples/*.hs
source-repository head
type: git
location: https://github.com/dorchard/effect-monad
library
hs-source-dirs: src
exposed-modules: Control.Coeffect
Control.Coeffect.Coreader
Control.Effect
Control.Effect.Cond
Control.Effect.Counter
Control.Effect.CounterNat
Control.Effect.Maybe
Control.Effect.Monad
Control.Effect.ParameterisedAsGraded
Control.Effect.Reader
Control.Effect.ReadOnceReader
Control.Effect.State
Control.Effect.Update
Control.Effect.Vector
Control.Effect.WriteOnceWriter
Control.Effect.Writer
Control.Effect.Helpers.List
Control.Effect.Parameterised
Control.Effect.Parameterised.AtomicState
Control.Effect.Parameterised.ExtensibleState
Control.Effect.Parameterised.SafeFiles
Control.Effect.Parameterised.State
build-depends: base < 5,
type-level-sets >= 0.8.7.0