aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-12-02 19:33:00 -0400
committerEduardo Julian2022-12-02 19:33:00 -0400
commit94e5802f594a73245fce0fbd885103b8bf210d57 (patch)
tree65e5799c0be40f5f015b39bfa6c87c9c27fd9424 /stdlib/source/library/lux.lux
parentb491dfff00219d5206075ea65468e00ab657075d (diff)
Added some simple time-series handling machinery.
Diffstat (limited to 'stdlib/source/library/lux.lux')
-rw-r--r--stdlib/source/library/lux.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/library/lux.lux b/stdlib/source/library/lux.lux
index 17d7d3160..763b1b25f 100644
--- a/stdlib/source/library/lux.lux
+++ b/stdlib/source/library/lux.lux
@@ -3292,7 +3292,7 @@
_
... TODO: Figure out why this doesn't work:
- ... (at meta#monad in token)
+ ... (of meta#monad in token)
(meta#in token)}
token))))
@@ -5135,17 +5135,17 @@
{.#None}
(failure (..wrong_syntax_error (symbol ..with))))))
-(def .public at
+(def .public of
(macro (_ tokens)
(when tokens
(list implementation [_ {#Symbol member}])
(meta#in (list (` (..with (, implementation) (, (symbol$ member))))))
(list#partial implementation member args)
- (meta#in (list (` ((..at (, implementation) (, member)) (,* args)))))
+ (meta#in (list (` ((..of (, implementation) (, member)) (,* args)))))
_
- (failure (..wrong_syntax_error (symbol ..at))))))
+ (failure (..wrong_syntax_error (symbol ..of))))))
(def .public has
(macro (_ tokens)
@@ -5479,7 +5479,7 @@
(again &rest (property#with var_name expansion map)))
{#End}
- (at meta#monad #in (list#conjoint (list#each normal bodies))))))
+ (of meta#monad #in (list#conjoint (list#each normal bodies))))))
{#None}
(failure (..wrong_syntax_error (symbol ..with_expansions)))))))