Skip to content

Commit 3f8fd01

Browse files
committed
Add generated docs
1 parent 159a4ce commit 3f8fd01

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
### Values
26+
27+
unsafeRunRef :: forall eff a. Eff (ref :: Ref | eff) a -> Eff eff a

0 commit comments

Comments
 (0)