aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/math/number
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/documentation/lux/math/number.lux28
-rw-r--r--stdlib/source/documentation/lux/math/number/complex.lux6
-rw-r--r--stdlib/source/documentation/lux/math/number/frac.lux6
-rw-r--r--stdlib/source/documentation/lux/math/number/i16.lux6
-rw-r--r--stdlib/source/documentation/lux/math/number/i32.lux6
-rw-r--r--stdlib/source/documentation/lux/math/number/i64.lux6
-rw-r--r--stdlib/source/documentation/lux/math/number/i8.lux6
-rw-r--r--stdlib/source/documentation/lux/math/number/int.lux6
-rw-r--r--stdlib/source/documentation/lux/math/number/nat.lux6
-rw-r--r--stdlib/source/documentation/lux/math/number/ratio.lux6
-rw-r--r--stdlib/source/documentation/lux/math/number/rev.lux6
11 files changed, 44 insertions, 44 deletions
diff --git a/stdlib/source/documentation/lux/math/number.lux b/stdlib/source/documentation/lux/math/number.lux
index 8a0c0c171..a6e8114e9 100644
--- a/stdlib/source/documentation/lux/math/number.lux
+++ b/stdlib/source/documentation/lux/math/number.lux
@@ -3,23 +3,23 @@
[lux {"-" [private]}
["$" documentation {"+" [documentation:]}]
[data
- ["." text {"+" [\n]}
+ ["[0]" text {"+" [\n]}
["%" format {"+" [format]}]]]
[macro
- ["." template]]]]
+ ["[0]" template]]]]
[\\library
- ["." /]]
- ["." / "_"
- ["#." i8]
- ["#." i16]
- ["#." i32]
- ["#." i64]
- ["#." nat]
- ["#." int]
- ["#." rev]
- ["#." frac]
- ["#." ratio]
- ["#." complex]])
+ ["[0]" /]]
+ ["[0]" / "_"
+ ["[1][0]" i8]
+ ["[1][0]" i16]
+ ["[1][0]" i32]
+ ["[1][0]" i64]
+ ["[1][0]" nat]
+ ["[1][0]" int]
+ ["[1][0]" rev]
+ ["[1][0]" frac]
+ ["[1][0]" ratio]
+ ["[1][0]" complex]])
(template [<name> <encoding> <no_commas> <with_commas>]
[(documentation: <name>
diff --git a/stdlib/source/documentation/lux/math/number/complex.lux b/stdlib/source/documentation/lux/math/number/complex.lux
index e6d2c4b16..2d2f5d331 100644
--- a/stdlib/source/documentation/lux/math/number/complex.lux
+++ b/stdlib/source/documentation/lux/math/number/complex.lux
@@ -3,12 +3,12 @@
[lux {"-" [private]}
["$" documentation {"+" [documentation:]}]
[data
- ["." text {"+" [\n]}
+ ["[0]" text {"+" [\n]}
["%" format {"+" [format]}]]]
[macro
- ["." template]]]]
+ ["[0]" template]]]]
[\\library
- ["." /]])
+ ["[0]" /]])
(documentation: /.Complex
"A complex number.")
diff --git a/stdlib/source/documentation/lux/math/number/frac.lux b/stdlib/source/documentation/lux/math/number/frac.lux
index 1d4a2f45e..2852ee75a 100644
--- a/stdlib/source/documentation/lux/math/number/frac.lux
+++ b/stdlib/source/documentation/lux/math/number/frac.lux
@@ -3,12 +3,12 @@
[lux {"-" [private]}
["$" documentation {"+" [documentation:]}]
[data
- ["." text {"+" [\n]}
+ ["[0]" text {"+" [\n]}
["%" format {"+" [format]}]]]
[macro
- ["." template]]]]
+ ["[0]" template]]]]
[\\library
- ["." /]])
+ ["[0]" /]])
(documentation: /.=
"Frac(tion) equivalence."
diff --git a/stdlib/source/documentation/lux/math/number/i16.lux b/stdlib/source/documentation/lux/math/number/i16.lux
index 7cb6b96df..1f4fe63ec 100644
--- a/stdlib/source/documentation/lux/math/number/i16.lux
+++ b/stdlib/source/documentation/lux/math/number/i16.lux
@@ -3,12 +3,12 @@
[lux {"-" [private]}
["$" documentation {"+" [documentation:]}]
[data
- ["." text {"+" [\n]}
+ ["[0]" text {"+" [\n]}
["%" format {"+" [format]}]]]
[macro
- ["." template]]]]
+ ["[0]" template]]]]
[\\library
- ["." /]])
+ ["[0]" /]])
(documentation: /.I16
"A 16-bit integer.")
diff --git a/stdlib/source/documentation/lux/math/number/i32.lux b/stdlib/source/documentation/lux/math/number/i32.lux
index 88bbe80e4..83814b429 100644
--- a/stdlib/source/documentation/lux/math/number/i32.lux
+++ b/stdlib/source/documentation/lux/math/number/i32.lux
@@ -3,12 +3,12 @@
[lux {"-" [private]}
["$" documentation {"+" [documentation:]}]
[data
- ["." text {"+" [\n]}
+ ["[0]" text {"+" [\n]}
["%" format {"+" [format]}]]]
[macro
- ["." template]]]]
+ ["[0]" template]]]]
[\\library
- ["." /]])
+ ["[0]" /]])
(documentation: /.I32
"A 32-bit integer.")
diff --git a/stdlib/source/documentation/lux/math/number/i64.lux b/stdlib/source/documentation/lux/math/number/i64.lux
index 49e371342..08c55da4d 100644
--- a/stdlib/source/documentation/lux/math/number/i64.lux
+++ b/stdlib/source/documentation/lux/math/number/i64.lux
@@ -3,12 +3,12 @@
[lux {"-" [or and not]}
["$" documentation {"+" [documentation:]}]
[data
- ["." text {"+" [\n]}
+ ["[0]" text {"+" [\n]}
["%" format {"+" [format]}]]]
[macro
- ["." template]]]]
+ ["[0]" template]]]]
[\\library
- ["." /]])
+ ["[0]" /]])
(template [<name> <doc>]
[(documentation: <name>
diff --git a/stdlib/source/documentation/lux/math/number/i8.lux b/stdlib/source/documentation/lux/math/number/i8.lux
index 3329e8a6c..b9d53fbae 100644
--- a/stdlib/source/documentation/lux/math/number/i8.lux
+++ b/stdlib/source/documentation/lux/math/number/i8.lux
@@ -3,12 +3,12 @@
[lux {"-" [private]}
["$" documentation {"+" [documentation:]}]
[data
- ["." text {"+" [\n]}
+ ["[0]" text {"+" [\n]}
["%" format {"+" [format]}]]]
[macro
- ["." template]]]]
+ ["[0]" template]]]]
[\\library
- ["." /]])
+ ["[0]" /]])
(documentation: /.I8
"A 8-bit integer.")
diff --git a/stdlib/source/documentation/lux/math/number/int.lux b/stdlib/source/documentation/lux/math/number/int.lux
index 60659050c..4c503598f 100644
--- a/stdlib/source/documentation/lux/math/number/int.lux
+++ b/stdlib/source/documentation/lux/math/number/int.lux
@@ -3,12 +3,12 @@
[lux {"-" [private]}
["$" documentation {"+" [documentation:]}]
[data
- ["." text {"+" [\n]}
+ ["[0]" text {"+" [\n]}
["%" format {"+" [format]}]]]
[macro
- ["." template]]]]
+ ["[0]" template]]]]
[\\library
- ["." /]])
+ ["[0]" /]])
(documentation: /.=
"Int(eger) equivalence."
diff --git a/stdlib/source/documentation/lux/math/number/nat.lux b/stdlib/source/documentation/lux/math/number/nat.lux
index dbae19c36..1e7fa5d5f 100644
--- a/stdlib/source/documentation/lux/math/number/nat.lux
+++ b/stdlib/source/documentation/lux/math/number/nat.lux
@@ -3,12 +3,12 @@
[lux {"-" [private]}
["$" documentation {"+" [documentation:]}]
[data
- ["." text {"+" [\n]}
+ ["[0]" text {"+" [\n]}
["%" format {"+" [format]}]]]
[macro
- ["." template]]]]
+ ["[0]" template]]]]
[\\library
- ["." /]])
+ ["[0]" /]])
(template [<name> <documentation>]
[(documentation: <name>
diff --git a/stdlib/source/documentation/lux/math/number/ratio.lux b/stdlib/source/documentation/lux/math/number/ratio.lux
index e7e018083..e99a0f21f 100644
--- a/stdlib/source/documentation/lux/math/number/ratio.lux
+++ b/stdlib/source/documentation/lux/math/number/ratio.lux
@@ -3,12 +3,12 @@
[lux {"-" [private]}
["$" documentation {"+" [documentation:]}]
[data
- ["." text {"+" [\n]}
+ ["[0]" text {"+" [\n]}
["%" format {"+" [format]}]]]
[macro
- ["." template]]]]
+ ["[0]" template]]]]
[\\library
- ["." /]])
+ ["[0]" /]])
(documentation: /.Ratio
"An unsigned ratio of numbers.")
diff --git a/stdlib/source/documentation/lux/math/number/rev.lux b/stdlib/source/documentation/lux/math/number/rev.lux
index 2a2053128..ba215f444 100644
--- a/stdlib/source/documentation/lux/math/number/rev.lux
+++ b/stdlib/source/documentation/lux/math/number/rev.lux
@@ -3,12 +3,12 @@
[lux {"-" [private]}
["$" documentation {"+" [documentation:]}]
[data
- ["." text {"+" [\n]}
+ ["[0]" text {"+" [\n]}
["%" format {"+" [format]}]]]
[macro
- ["." template]]]]
+ ["[0]" template]]]]
[\\library
- ["." /]])
+ ["[0]" /]])
(documentation: /.=
"Rev(olution) equivalence."