aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/data/collection/set.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/documentation/lux/data/collection/set.lux51
1 files changed, 23 insertions, 28 deletions
diff --git a/stdlib/source/documentation/lux/data/collection/set.lux b/stdlib/source/documentation/lux/data/collection/set.lux
index 2eb5f11c9..b3a16c70c 100644
--- a/stdlib/source/documentation/lux/data/collection/set.lux
+++ b/stdlib/source/documentation/lux/data/collection/set.lux
@@ -1,7 +1,7 @@
(.require
[library
[lux (.except list has)
- ["$" documentation (.only documentation:)]
+ ["$" documentation]
[data
["[0]" text (.only \n)
["%" \\format (.only format)]]]
@@ -13,36 +13,11 @@
["[1][0]" multi]
["[1][0]" ordered]])
-(documentation: /.has
- ""
- [(has elem set)])
-
-(documentation: /.difference
- ""
- [(difference sub base)])
-
-(documentation: /.intersection
- ""
- [(intersection filter base)])
-
-(documentation: /.sub?
- ""
- [(sub? super sub)])
-
-(documentation: /.super?
- ""
- [(super? sub super)])
-
(.def .public documentation
(.List $.Module)
($.module /._
""
- [..has
- ..difference
- ..intersection
- ..sub?
- ..super?
- ($.default (/.Set it))
+ [($.default (/.Set it))
($.default /.member_hash)
($.default /.empty)
($.default /.size)
@@ -55,6 +30,26 @@
($.default /.monoid)
($.default /.empty?)
($.default /.of_list)
- ($.default /.predicate)]
+ ($.default /.predicate)
+
+ ($.documentation /.has
+ ""
+ [(has elem set)])
+
+ ($.documentation /.difference
+ ""
+ [(difference sub base)])
+
+ ($.documentation /.intersection
+ ""
+ [(intersection filter base)])
+
+ ($.documentation /.sub?
+ ""
+ [(sub? super sub)])
+
+ ($.documentation /.super?
+ ""
+ [(super? sub super)])]
[/multi.documentation
/ordered.documentation]))