Skip to content

Commit f34b6f2

Browse files
committed
hide helper functions
1 parent 1fcc922 commit f34b6f2

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

MODULE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@
117117

118118
mkCofree :: forall f a. a -> f (Cofree f a) -> Cofree f a
119119

120+
mkCofree' :: forall f a. a -> Lazy (f (Cofree f a)) -> Cofree f a
121+
120122
tail :: forall f a. Cofree f a -> f (Cofree f a)
121123

122124

src/Control/Comonad/Cofree.purs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
module Control.Comonad.Cofree
2-
(
3-
Cofree(),
4-
mkCofree,
5-
head,
6-
tail,
7-
_tail
2+
( Cofree()
3+
, mkCofree
4+
, mkCofree'
5+
, head
6+
, tail
87
) where
98

109
import Control.Comonad

src/Control/Monad/Trampoline.purs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
module Control.Monad.Trampoline
2-
(
3-
Trampoline(),
4-
done,
5-
suspend,
6-
delay',
7-
delay,
8-
runTrampoline
2+
( Trampoline()
3+
, done
4+
, suspend
5+
, delay'
6+
, delay
7+
, runTrampoline
98
) where
109

1110
import Control.Monad.Free

0 commit comments

Comments
 (0)