aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/collection/sequence.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/data/collection/sequence.lux24
1 files changed, 13 insertions, 11 deletions
diff --git a/stdlib/source/lux/data/collection/sequence.lux b/stdlib/source/lux/data/collection/sequence.lux
index a148d745c..dc8f4a802 100644
--- a/stdlib/source/lux/data/collection/sequence.lux
+++ b/stdlib/source/lux/data/collection/sequence.lux
@@ -1,15 +1,17 @@
(.module:
- lux
- (lux (control functor
- monad
- comonad
- [continuation (#+ pending Cont)]
- ["p" parser])
- [macro (#+ with-gensyms)]
- (macro [code]
- ["s" syntax (#+ syntax: Syntax)])
- (data (collection [list ("list/" Monad<List>)])
- bool)))
+ [lux #*
+ [control
+ functor
+ monad
+ comonad
+ [continuation (#+ pending Cont)]
+ ["p" parser]]
+ [macro (#+ with-gensyms)
+ [code]
+ ["s" syntax (#+ syntax: Syntax)]]
+ [data
+ bool
+ [collection [list ("list/" Monad<List>)]]]])
## [Types]
(type: #export (Sequence a)