We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 159a4ce commit 3f8fd01Copy full SHA for 3f8fd01
README.md
@@ -0,0 +1,27 @@
1
+# Module Documentation
2
+
3
+## Module Control.Monad.Eff.Ref
4
5
+### Types
6
7
+ data Ref :: !
8
9
+ data RefVal :: * -> *
10
11
12
+### Values
13
14
+ modifyRef :: forall s r. RefVal s -> (s -> s) -> Eff (ref :: Ref | r) { }
15
16
+ newRef :: forall s r. s -> Eff (ref :: Ref | r) (RefVal s)
17
18
+ readRef :: forall s r. RefVal s -> Eff (ref :: Ref | r) s
19
20
+ writeRef :: forall s r. RefVal s -> s -> Eff (ref :: Ref | r) { }
21
22
23
+## Module Control.Monad.Eff.Ref.Unsafe
24
25
26
27
+ unsafeRunRef :: forall eff a. Eff (ref :: Ref | eff) a -> Eff eff a
0 commit comments