Skip to content

Commit 1224a1f

Browse files
committed
code cleanup
1 parent 5e4e511 commit 1224a1f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

MODULE.md

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

112112
### Values
113113

114+
_tail :: forall f a. Cofree f a -> Trampoline (f (Cofree f a))
115+
114116
head :: forall f a. Cofree f a -> a
115117

116118
mkCofree :: forall f a. a -> f (Cofree f a) -> Cofree f a

src/Control/Comonad/Cofree.purs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ module Control.Comonad.Cofree
33
Cofree(),
44
mkCofree,
55
head,
6-
tail
6+
tail,
7+
_tail
78
) where
89

910
import Control.Comonad

0 commit comments

Comments
 (0)