aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/collection/row.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/data/collection/row.lux')
-rw-r--r--stdlib/source/library/lux/data/collection/row.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/library/lux/data/collection/row.lux b/stdlib/source/library/lux/data/collection/row.lux
index b81cb2534..2a6a1020d 100644
--- a/stdlib/source/library/lux/data/collection/row.lux
+++ b/stdlib/source/library/lux/data/collection/row.lux
@@ -14,17 +14,17 @@
[fold (#+ Fold)]
[predicate (#+ Predicate)]]
[control
+ ["." maybe]
["." try (#+ Try)]
["." exception (#+ exception:)]
["p" parser
["s" code (#+ Parser)]]]
[data
- ["." maybe]
["." product]
[collection
["." list ("#\." fold functor monoid)]
["." array (#+ Array) ("#\." functor fold)]]]
- [macro (#+ with_gensyms)
+ [macro
[syntax (#+ syntax:)]
["." code]]
[math
@@ -183,7 +183,7 @@
#.End))))
(type: .public (Row a)
- {#.doc (doc "A sequential data-structure with fast random access.")}
+ {#.doc (example "A sequential data-structure with fast random access.")}
{#level Level
#size Nat
#root (Hierarchy a)
@@ -242,7 +242,7 @@
(exception: base_was_not_found)
(def: .public (within_bounds? row idx)
- {#.doc (doc "Determines whether the index is within the bounds of the row.")}
+ {#.doc (example "Determines whether the index is within the bounds of the row.")}
(All [a] (-> (Row a) Nat Bit))
(n.< (get@ #size row) idx))
@@ -359,8 +359,8 @@
(|>> (get@ #size) (n.= 0)))
(syntax: .public (row {elems (p.some s.any)})
- {#.doc (doc "Row literals."
- (row 12 34 56 78 90))}
+ {#.doc (example "Row literals."
+ (row 12 34 56 78 90))}
(in (.list (` (..of_list (.list (~+ elems)))))))
(implementation: (node_equivalence Equivalence<a>)