Skip to content

Commit 8133841

Browse files
authored
Merge pull request #26 from purescript/global-region
Add global region and MonadST
2 parents 3fcc991 + 3c6619c commit 8133841

File tree

3 files changed

+37
-1
lines changed

3 files changed

+37
-1
lines changed

bower.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"dependencies": {
2020
"purescript-prelude": "^4.0.0",
2121
"purescript-tailrec": "^4.0.0",
22-
"purescript-partial": "^2.0.0"
22+
"purescript-partial": "^2.0.0",
23+
"purescript-unsafe-coerce": "^4.0.0"
2324
},
2425
"devDependencies": {
2526
"purescript-console": "^4.0.0"

src/Control/Monad/ST/Class.purs

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module Control.Monad.ST.Class where
2+
3+
import Prelude
4+
5+
import Control.Monad.ST (ST)
6+
import Control.Monad.ST.Global (Global)
7+
import Control.Monad.ST.Global as Global
8+
import Effect (Effect)
9+
10+
class MonadST s m | m -> s where
11+
liftST :: ST s ~> m
12+
13+
instance monadSTEffect :: MonadST Global Effect where
14+
liftST = Global.toEffect
15+
16+
instance monadSTST :: MonadST s (ST s) where
17+
liftST = identity

src/Control/Monad/ST/Global.purs

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module Control.Monad.ST.Global
2+
( Global
3+
, toEffect
4+
) where
5+
6+
import Prelude
7+
8+
import Control.Monad.ST (ST, kind Region)
9+
import Effect (Effect)
10+
import Unsafe.Coerce (unsafeCoerce)
11+
12+
-- | This region allows `ST` computations to be converted into `Effect`
13+
-- | computations so they can be run in a global context.
14+
foreign import data Global :: Region
15+
16+
-- | Converts an `ST` computation into an `Effect` computation.
17+
toEffect :: ST Global ~> Effect
18+
toEffect = unsafeCoerce

0 commit comments

Comments
 (0)