From 94e5802f594a73245fce0fbd885103b8bf210d57 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Fri, 2 Dec 2022 19:33:00 -0400 Subject: Added some simple time-series handling machinery. --- stdlib/source/documentation/lux.lux | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'stdlib/source/documentation/lux.lux') diff --git a/stdlib/source/documentation/lux.lux b/stdlib/source/documentation/lux.lux index 07e6a2dc2..13b7e6d8a 100644 --- a/stdlib/source/documentation/lux.lux +++ b/stdlib/source/documentation/lux.lux @@ -561,8 +561,8 @@ "Opens a implementation and generates a definition for each of its members (including nested members)." ($.example (use "i:[0]" order)) ($.comment "=>") - ($.example (def i:= (at order =))) - ($.example (def i:< (at order <)))) + ($.example (def i:= (of order =))) + ($.example (def i:< (of order <)))) ($.definition /.|>> "Similar to the piping macro, but rather than taking an initial object to work on, creates a function for taking it." @@ -603,10 +603,10 @@ ($.definition /.at "Allows accessing the value of a implementation's member." - ($.example (at codec encoded)) + ($.example (of codec encoded)) ($.comment "Also allows using that value as a function.") - ($.example (at codec encoded +123))) + ($.example (of codec encoded +123))) ($.definition /.has "Sets the value of a record at a given tag." @@ -706,7 +706,7 @@ [ (with_template [ ] [(cover [] (compare - (at codec encoded )))] + (of codec encoded )))] [bit #1 "#1"] [int +123 "+123"] @@ -797,7 +797,7 @@ ... ($.example (def (hash (^let set [member_hash _])) ... (list#mix (function (_ elem acc) ... (+ acc - ... (at member_hash hash elem))) + ... (of member_hash hash elem))) ... 0 ... (set.list set))))) -- cgit v1.2.3