Skip to content

Commit 02fb933

Browse files
committed
Bumping version number to 0.0.8
1 parent ac70cb1 commit 02fb933

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,17 @@
3939

4040
go :: forall f a. (Functor f) => (f (Free f a) -> Free f a) -> Free f a -> a
4141

42+
-- Note: can blow the stack!
43+
goM :: forall f m a. (Functor f, Monad m) => (f (Free f a) -> m (Free f a)) -> Free f a -> m a
44+
45+
goEff :: forall e f a. (Functor f) => (f (Free f a) -> Eff e (Free f a)) -> Free f a -> Eff e a
46+
4247
liftF :: forall f a. (Functor f) => f a -> Free f a
4348

4449
pureF :: forall f a. (Applicative f) => a -> Free f a
4550

4651
-- Note: can blow the stack!
47-
iterM :: forall f m a. (Functor f, Monad m) => (f (m a) -> m a) -> Free f a -> m a
52+
iterM :: forall f m a. (Functor f, Monad m) => (forall a. f (m a) -> m a) -> Free f a -> m a
4853

4954
resume :: forall f a. (Functor f) => Free f a -> Either (f (Free f a)) a
5055

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "purescript-free",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"homepage": "https://github.com/purescript-contrib/purescript-free",
55
"description": "Free monads",
66
"keywords": ["purescript"],

0 commit comments

Comments
 (0)