aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/data
diff options
context:
space:
mode:
authorEduardo Julian2022-03-15 07:24:35 -0400
committerEduardo Julian2022-03-15 07:24:35 -0400
commitbc36487224f670c23002cc4575c0dba3e5dc1be1 (patch)
tree01601f7e5d992ace77a16cfa90240ffc4511a7af /stdlib/source/documentation/lux/data
parent4ef1ac1dfe0edd1a11bb7f1fd13c8b6cb8f1bab4 (diff)
De-sigil-ification: ^
Diffstat (limited to '')
-rw-r--r--stdlib/source/documentation/lux/data/collection/stream.lux36
-rw-r--r--stdlib/source/documentation/lux/data/text/regex.lux30
2 files changed, 33 insertions, 33 deletions
diff --git a/stdlib/source/documentation/lux/data/collection/stream.lux b/stdlib/source/documentation/lux/data/collection/stream.lux
index 6961530c6..4d3e89a52 100644
--- a/stdlib/source/documentation/lux/data/collection/stream.lux
+++ b/stdlib/source/documentation/lux/data/collection/stream.lux
@@ -1,19 +1,19 @@
(.using
- [library
- [lux {"-" list}
- ["$" documentation {"+" documentation:}]
- [control
- ["<>" parser
- ["<[0]>" code]]]
- [data
- ["[0]" text {"+" \n}
- ["%" format {"+" format}]]]
- [macro
- [syntax {"+" syntax:}]
- ["[0]" code]
- ["[0]" template]]]]
- [\\library
- ["[0]" /]])
+ [library
+ [lux {"-" list}
+ ["$" documentation {"+" documentation:}]
+ [control
+ ["<>" parser
+ ["<[0]>" code]]]
+ [data
+ ["[0]" text {"+" \n}
+ ["%" format {"+" format}]]]
+ [macro
+ [syntax {"+" syntax:}]
+ ["[0]" code]
+ ["[0]" template]]]]
+ [\\library
+ ["[0]" /]])
(documentation: (/.Stream it)
"An infinite sequence of values.")
@@ -44,10 +44,10 @@
\n "The right side contains all entries for which the predicate is #0.")
[(partition left? xs)])
-(documentation: /.^stream&
+(documentation: /.pattern
(format "Allows destructuring of streams in pattern-matching expressions."
\n "Caveat emptor: Only use it for destructuring, and not for testing values within the streams.")
- [(let [(^stream& x y z _tail) (some_stream_func +1 +2 +3)]
+ [(let [(pattern x y z _tail) (some_stream_func +1 +2 +3)]
(func x y z))])
(.def: .public documentation
@@ -62,7 +62,7 @@
..only
..partition
- ..^stream&
+ ..pattern
($.default /.head)
($.default /.tail)
($.default /.functor)
diff --git a/stdlib/source/documentation/lux/data/text/regex.lux b/stdlib/source/documentation/lux/data/text/regex.lux
index 2b8bedfbc..631195a86 100644
--- a/stdlib/source/documentation/lux/data/text/regex.lux
+++ b/stdlib/source/documentation/lux/data/text/regex.lux
@@ -1,14 +1,14 @@
(.using
- [library
- [lux "*"
- ["$" documentation {"+" documentation:}]
- [data
- [text {"+" \n}
- ["%" format {"+" format}]]]
- [macro
- ["[0]" template]]]]
- [\\library
- ["[0]" /]])
+ [library
+ [lux "*"
+ ["$" documentation {"+" documentation:}]
+ [data
+ [text {"+" \n}
+ ["%" format {"+" format}]]]
+ [macro
+ ["[0]" template]]]]
+ [\\library
+ ["[0]" /]])
(documentation: /.regex
"Create lexers using regular-expression syntax."
@@ -56,14 +56,14 @@
(regex "a|b")
(regex "a(.)(.)|b(.)(.)")])
-(documentation: /.^regex
+(documentation: /.pattern
"Allows you to test text against regular expressions."
[(case some_text
- (^regex "(\d{3})-(\d{3})-(\d{4})"
- [_ country_code area_code place_code])
+ (pattern "(\d{3})-(\d{3})-(\d{4})"
+ [_ country_code area_code place_code])
do_some_thing_when_number
- (^regex "\w+")
+ (pattern "\w+")
do_some_thing_when_word
_
@@ -74,6 +74,6 @@
($.module /._
""
[..regex
- ..^regex
+ ..pattern
($.default /.incorrect_quantification)]
[]))