aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/coll/stream.lux
diff options
context:
space:
mode:
authorEduardo Julian2017-04-10 23:38:07 -0400
committerEduardo Julian2017-04-10 23:38:07 -0400
commitcb792cb800790e89b371832e46cfe958b7c683d0 (patch)
treea67bd2c13100560ee421d87163487186335dd98b /stdlib/source/lux/data/coll/stream.lux
parentd5ecf2657e9e9c6fb8d0daee675e1a72627d3014 (diff)
- Move the modules under lux/function/* to be under lux/control/*.
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/data/coll/stream.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/data/coll/stream.lux b/stdlib/source/lux/data/coll/stream.lux
index f8ee835b3..b620c5af2 100644
--- a/stdlib/source/lux/data/coll/stream.lux
+++ b/stdlib/source/lux/data/coll/stream.lux
@@ -2,12 +2,12 @@
lux
(lux (control functor
monad
- comonad)
+ comonad
+ [cont #+ pending Cont])
[compiler #+ with-gensyms]
(macro ["s" syntax #+ syntax: Syntax])
(data (coll [list "List/" Monad<List>])
- bool)
- (function [cont #+ pending Cont])))
+ bool)))
## [Types]
(type: #export (Stream a)