aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source
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
parentd5ecf2657e9e9c6fb8d0daee675e1a72627d3014 (diff)
- Move the modules under lux/function/* to be under lux/control/*.
Diffstat (limited to 'stdlib/source')
-rw-r--r--stdlib/source/lux/control/cont.lux (renamed from stdlib/source/lux/function/cont.lux)0
-rw-r--r--stdlib/source/lux/control/reader.lux (renamed from stdlib/source/lux/function/reader.lux)0
-rw-r--r--stdlib/source/lux/control/state.lux (renamed from stdlib/source/lux/function/state.lux)0
-rw-r--r--stdlib/source/lux/control/thunk.lux (renamed from stdlib/source/lux/function/thunk.lux)0
-rw-r--r--stdlib/source/lux/data/coll/stream.lux6
5 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/function/cont.lux b/stdlib/source/lux/control/cont.lux
index 08f784035..08f784035 100644
--- a/stdlib/source/lux/function/cont.lux
+++ b/stdlib/source/lux/control/cont.lux
diff --git a/stdlib/source/lux/function/reader.lux b/stdlib/source/lux/control/reader.lux
index 598bfc670..598bfc670 100644
--- a/stdlib/source/lux/function/reader.lux
+++ b/stdlib/source/lux/control/reader.lux
diff --git a/stdlib/source/lux/function/state.lux b/stdlib/source/lux/control/state.lux
index 9ee12e93d..9ee12e93d 100644
--- a/stdlib/source/lux/function/state.lux
+++ b/stdlib/source/lux/control/state.lux
diff --git a/stdlib/source/lux/function/thunk.lux b/stdlib/source/lux/control/thunk.lux
index 03545b8b6..03545b8b6 100644
--- a/stdlib/source/lux/function/thunk.lux
+++ b/stdlib/source/lux/control/thunk.lux
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)