aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/collection/row.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/data/collection/row.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/lux/data/collection/row.lux b/stdlib/source/lux/data/collection/row.lux
index ae60e87d5..9bc47be18 100644
--- a/stdlib/source/lux/data/collection/row.lux
+++ b/stdlib/source/lux/data/collection/row.lux
@@ -231,8 +231,8 @@
(exception: incorrect-row-structure)
(exception: #export [a] (index-out-of-bounds {row (Row a)} {index Nat})
- (exception.report ["Size" (:: n.decimal encode (get@ #size row))]
- ["Index" (:: n.decimal encode index)]))
+ (exception.report ["Size" (\ n.decimal encode (get@ #size row))]
+ ["Index" (\ n.decimal encode index)]))
(exception: base-was-not-found)
@@ -363,10 +363,10 @@
(def: (= v1 v2)
(case [v1 v2]
[(#Base b1) (#Base b2)]
- (:: (array.equivalence Equivalence<a>) = b1 b2)
+ (\ (array.equivalence Equivalence<a>) = b1 b2)
[(#Hierarchy h1) (#Hierarchy h2)]
- (:: (array.equivalence (node-equivalence Equivalence<a>)) = h1 h2)
+ (\ (array.equivalence (node-equivalence Equivalence<a>)) = h1 h2)
_
#0)))
@@ -431,7 +431,7 @@
(def: (map f xs)
{#level (get@ #level xs)
#size (get@ #size xs)
- #root (|> xs (get@ #root) (array\map (:: node-functor map f)))
+ #root (|> xs (get@ #root) (array\map (\ node-functor map f)))
#tail (|> xs (get@ #tail) (array\map f))}))
(structure: #export apply