aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/format/css/value.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/data/format/css/value.lux')
-rw-r--r--stdlib/source/library/lux/data/format/css/value.lux24
1 files changed, 12 insertions, 12 deletions
diff --git a/stdlib/source/library/lux/data/format/css/value.lux b/stdlib/source/library/lux/data/format/css/value.lux
index ba082cb05..7817c9769 100644
--- a/stdlib/source/library/lux/data/format/css/value.lux
+++ b/stdlib/source/library/lux/data/format/css/value.lux
@@ -16,7 +16,7 @@
["[0]" text
["%" format {"+" [Format format]}]]
[collection
- ["[0]" list ("[1]\[0]" functor)]]]
+ ["[0]" list ("[1]#[0]" functor)]]]
[type
abstract]
[macro
@@ -800,7 +800,7 @@
(def: .public (cubic_bezier p0 p1 p2 p3)
(-> Frac Frac Frac Frac (Value Timing))
(|> (list p0 p1 p2 p3)
- (list\each %number)
+ (list#each %number)
(..apply "cubic-bezier")))
(template [<name> <brand>]
@@ -832,7 +832,7 @@
(..apply "rgba" (list (%.nat red)
(%.nat green)
(%.nat blue)
- (if (r.= (\ r.interval top) alpha)
+ (if (r.= (# r.interval top) alpha)
"1.0"
(format "0" (%.rev alpha)))))))
@@ -962,7 +962,7 @@
(let [[now after] next]
(..apply <function> (list& (:representation Angle angle)
(with_hint now)
- (list\each with_hint after)))))]
+ (list#each with_hint after)))))]
[linear_gradient "linear-gradient"]
[repeating_linear_gradient "repeating-linear-gradient"]
@@ -1087,7 +1087,7 @@
[now after] next]
(..apply <function> (list& (..shape shape)
(with_hint now)
- (list\each with_hint after)))))]
+ (list#each with_hint after)))))]
[radial_gradient "radial-gradient"]
[repeating_radial_gradient "repeating-radial-gradient"]
@@ -1160,7 +1160,7 @@
(case options
{.#Item _}
(|> options
- (list\each ..font_name)
+ (list#each ..font_name)
(text.interposed ",")
(:abstraction Value))
@@ -1199,7 +1199,7 @@
(-> (List (List (Maybe (Value Grid)))) (Value Grid_Template))
(let [empty (: (Value Grid)
(:abstraction "."))]
- (|>> (list\each (|>> (list\each (|>> (maybe.else empty)
+ (|>> (list#each (|>> (list#each (|>> (maybe.else empty)
:representation))
(text.interposed ..grid_column_separator)
(text.enclosed ["'" "'"])))
@@ -1236,7 +1236,7 @@
(def: .public (quotes [left0 right0] [left1 right1])
(-> [Quote Quote] [Quote Quote] (Value Quotes))
(|> (list left0 right0 left1 right1)
- (list\each (|>> ..quote_text %.text))
+ (list#each (|>> ..quote_text %.text))
(text.interposed ..quote_separator)
:abstraction))
@@ -1246,7 +1246,7 @@
[Frac Frac]
(Value Transform))
(|> (list a b c d tx ty)
- (list\each %number)
+ (list#each %number)
(..apply "matrix")))
(def: .public (matrix_3d [a0 b0 c0 d0] [a1 b1 c1 d1] [a2 b2 c2 d2] [a3 b3 c3 d3])
@@ -1256,14 +1256,14 @@
[Frac Frac Frac Frac]
(Value Transform))
(|> (list a0 b0 c0 d0 a1 b1 c1 d1 a2 b2 c2 d2 a3 b3 c3 d3)
- (list\each %number)
+ (list#each %number)
(..apply "matrix3d")))
(template [<name> <function> <input_types> <input_values>]
[(`` (def: .public (<name> [(~~ (template.spliced <input_values>))])
(-> [(~~ (template.spliced <input_types>))] (Value Transform))
(|> (list (~~ (template.spliced <input_values>)))
- (list\each %number)
+ (list#each %number)
(..apply <function>))))]
[translate_2d "translate" [Frac Frac] [x y]]
@@ -1285,7 +1285,7 @@
[(`` (def: .public (<name> [(~~ (template.spliced <input_values>))])
(-> [(~~ (template.spliced <input_types>))] (Value Transform))
(|> (list (~~ (template.spliced <input_values>)))
- (list\each ..angle)
+ (list#each ..angle)
(..apply <function>))))]
[rotate_2d "rotate" [Angle] [angle]]