From 9ca36f46b06af6180a92a2f16cba509cacc619d3 Mon Sep 17 00:00:00 2001 From: Grain Bot Date: Fri, 3 Jan 2025 01:41:18 +0000 Subject: [PATCH] chore(stdlib): Regenerate markdown documentation --- stdlib/bytes.md | 4 ++-- stdlib/char.md | 24 ++++++++++++------------ stdlib/exception.md | 2 +- stdlib/float32.md | 28 ++++++++++++++-------------- stdlib/float64.md | 28 ++++++++++++++-------------- stdlib/hash.md | 8 ++++---- stdlib/json.md | 24 ++++++++++++------------ stdlib/list.md | 16 ++++++++-------- stdlib/number.md | 10 +++++----- stdlib/runtime/exception.md | 6 +++--- stdlib/stack.md | 16 ++++++++-------- stdlib/string.md | 2 +- 12 files changed, 84 insertions(+), 84 deletions(-) diff --git a/stdlib/bytes.md b/stdlib/bytes.md index 9f619cd5f..ba760a16c 100644 --- a/stdlib/bytes.md +++ b/stdlib/bytes.md @@ -434,7 +434,7 @@ assert bytes == b"\x00\x00\x00\x00\x00" ### Bytes.**getChar**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -477,7 +477,7 @@ assert Bytes.getChar(0, bytes) == 'H' ### Bytes.**setChar**
-Added in next +Added in 0.7.0 No other changes yet.
diff --git a/stdlib/char.md b/stdlib/char.md index f5a2def06..5e91c5163 100644 --- a/stdlib/char.md +++ b/stdlib/char.md @@ -452,7 +452,7 @@ assert 'a' >= 'a' Utilities for working with ASCII characters.
-Added in next +Added in 0.7.0 No other changes yet.
@@ -467,7 +467,7 @@ Functions and constants included in the Char.Ascii module. #### Char.Ascii.**min**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -480,7 +480,7 @@ The minimum valid ASCII character code. #### Char.Ascii.**max**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -493,7 +493,7 @@ The maximum valid ASCII character code. #### Char.Ascii.**isValid**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -532,7 +532,7 @@ assert !Char.Ascii.isValid('🌾') #### Char.Ascii.**isDigit**
-Added in next +Added in 0.7.0 @@ -574,7 +574,7 @@ assert !Char.Ascii.isDigit('a') #### Char.Ascii.**isAlpha**
-Added in next +Added in 0.7.0
versionchanges
@@ -616,7 +616,7 @@ assert !Char.Ascii.isAlpha('1') #### Char.Ascii.**isControl**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -659,7 +659,7 @@ assert !Char.Ascii.isControl('a') #### Char.Ascii.**isWhitespace**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -702,7 +702,7 @@ assert !Char.isWhitespace('a') #### Char.Ascii.**isPunctuation**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -737,7 +737,7 @@ assert !Char.Ascii.isPunctuation('1') #### Char.Ascii.**isGraphic**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -772,7 +772,7 @@ assert !Char.Ascii.isGraphic('\t') #### Char.Ascii.**toLowercase**
-Added in next +Added in 0.7.0
versionchanges
@@ -810,7 +810,7 @@ assert Char.Ascii.toLowercase('B') == 'b' #### Char.Ascii.**toUppercase**
-Added in next +Added in 0.7.0
versionchanges
diff --git a/stdlib/exception.md b/stdlib/exception.md index 5cefb3162..bafa4d361 100644 --- a/stdlib/exception.md +++ b/stdlib/exception.md @@ -68,7 +68,7 @@ throw ExampleError(1) // Error found on line: 1 ### Exception.**toString**
-Added in next +Added in 0.7.0 No other changes yet.
diff --git a/stdlib/float32.md b/stdlib/float32.md index f68d1cbd5..7e4cd9467 100644 --- a/stdlib/float32.md +++ b/stdlib/float32.md @@ -313,7 +313,7 @@ assert 10.0f / 4.0f == 2.5f ### Float32.**(\*\*)**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -516,7 +516,7 @@ assert 3.0f >= 3.0f ### Float32.**isFinite**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -658,7 +658,7 @@ Float32.isInfinite(1.0f) == false ### Float32.**min**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -690,7 +690,7 @@ Float32.min(5.0f, 2.0f) == 2.0f ### Float32.**max**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -792,7 +792,7 @@ Float32.neg(1.0f) == -1.0f ### Float32.**ceil**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -827,7 +827,7 @@ Float32.ceil(-5.5f) == -5.0f ### Float32.**floor**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -862,7 +862,7 @@ Float32.floor(-5.5f) == -6.0f ### Float32.**trunc**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -893,7 +893,7 @@ Float32.trunc(5.5f) == 5.0f ### Float32.**round**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -936,7 +936,7 @@ Float32.round(-5.4f) == -5.0f ### Float32.**sqrt**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -967,7 +967,7 @@ Float32.sqrt(25.0f) == 5.0f ### Float32.**copySign**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1007,7 +1007,7 @@ Float32.copySign(-5.0f, 1.0f) == 5.0f ### Float32.**isClose**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1071,7 +1071,7 @@ Float32.isClose(4.0f, 4.1f, relativeTolerance=0.024f) == false ### Float32.**sin**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1102,7 +1102,7 @@ Float32.sin(0.0f) == 0.0f ### Float32.**cos**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1133,7 +1133,7 @@ Float32.cos(0.0f) == 1.0f ### Float32.**tan**
-Added in next +Added in 0.7.0 No other changes yet.
diff --git a/stdlib/float64.md b/stdlib/float64.md index 3274d524b..7add80b7b 100644 --- a/stdlib/float64.md +++ b/stdlib/float64.md @@ -313,7 +313,7 @@ assert 25.0d / 4.0d == 6.25d ### Float64.**(\*\*)**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -516,7 +516,7 @@ assert -1.0d >= -1.0d ### Float64.**isFinite**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -658,7 +658,7 @@ Float64.isInfinite(1.0d) == false ### Float64.**min**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -690,7 +690,7 @@ Float64.min(5.0d, 2.0d) == 2.0d ### Float64.**max**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -792,7 +792,7 @@ Float64.neg(1.0d) == -1.0d ### Float64.**ceil**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -827,7 +827,7 @@ Float64.ceil(-5.5d) == -5.0d ### Float64.**floor**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -862,7 +862,7 @@ Float64.floor(-5.5d) == -6.0d ### Float64.**trunc**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -893,7 +893,7 @@ Float64.trunc(5.5d) == 5.0d ### Float64.**round**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -936,7 +936,7 @@ Float64.round(-5.4d) == -5.0d ### Float64.**sqrt**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -967,7 +967,7 @@ Float64.sqrt(25.0d) == 5.0d ### Float64.**copySign**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1007,7 +1007,7 @@ Float64.copySign(-5.0d, 1.0d) == 5.0d ### Float64.**isClose**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1071,7 +1071,7 @@ Float64.isClose(4.0d, 4.1d, relativeTolerance=0.024d) == false ### Float64.**sin**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1102,7 +1102,7 @@ Float64.sin(0.0d) == 0.0d ### Float64.**cos**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1133,7 +1133,7 @@ Float64.cos(0.0d) == 1.0d ### Float64.**tan**
-Added in next +Added in 0.7.0 No other changes yet.
diff --git a/stdlib/hash.md b/stdlib/hash.md index fb41b0a82..b4c308a56 100644 --- a/stdlib/hash.md +++ b/stdlib/hash.md @@ -30,7 +30,7 @@ Type declarations included in the Hash module. ### Hash.**HashInstance**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -47,7 +47,7 @@ Functions and constants included in the Hash module. ### Hash.**make**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -79,7 +79,7 @@ assert Hash.hash(hashInstance," Hello World") == Hash.hash(hashInstance, "Hello ### Hash.**makeSeeded**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -123,7 +123,7 @@ assert Hash.hash(hashInstance1," Hello World") != Hash.hash(hashInstance2, "Hell - +
versionchanges
versionchanges
nextAdded `hashInstance` parameter instead of using a global seed
0.7.0Added `hashInstance` parameter instead of using a global seed
diff --git a/stdlib/json.md b/stdlib/json.md index 11968878c..3321d4b61 100644 --- a/stdlib/json.md +++ b/stdlib/json.md @@ -649,7 +649,7 @@ assert parse("{\"currency\":\"$\",\"price\":119}") == Ok( Utilities for accessing and updating JSON data.
-Added in next +Added in 0.7.0 No other changes yet.
@@ -671,7 +671,7 @@ Type declarations included in the Json.Lenses module. #### Json.Lenses.**Lens**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -809,7 +809,7 @@ assert map(number, x => x * 2, JsonString("abc")) == None #### Json.Lenses.**json**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -828,7 +828,7 @@ assert get(json, JsonString("abc")) == Some(JsonString("abc")) #### Json.Lenses.**boolean**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -847,7 +847,7 @@ assert get(boolean, JsonBoolean(true)) == Some(true) #### Json.Lenses.**string**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -866,7 +866,7 @@ assert get(string, JsonString("abc")) == Some("abc") #### Json.Lenses.**number**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -885,7 +885,7 @@ assert get(number, JsonNumber(123)) == Some(123) #### Json.Lenses.**array**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -904,7 +904,7 @@ assert get(array, JsonArray([JsonNumber(123)])) == Some([JsonNumber(123)]) #### Json.Lenses.**objectProperties**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -923,7 +923,7 @@ assert get(objectProperties, JsonObject([("a", JsonNumber(123))])) == Some([("a" #### Json.Lenses.**property**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -959,7 +959,7 @@ assert set(property("x"), JsonString("new"), JsonObject([("x", JsonNumber(123))] #### Json.Lenses.**nullable**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -994,7 +994,7 @@ assert set(nullable(number), Some(123), JsonString("abc")) == Some(JsonNumber(12 #### Json.Lenses.**propertyPath**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1026,7 +1026,7 @@ assert get(propertyPath(["a", "b"]), nestedObj) == Some(JsonNumber(123)) #### Json.Lenses.**(||>)**
-Added in next +Added in 0.7.0 No other changes yet.
diff --git a/stdlib/list.md b/stdlib/list.md index e483de60b..2b087ee4f 100644 --- a/stdlib/list.md +++ b/stdlib/list.md @@ -346,7 +346,7 @@ Returns: ### List.**filterMap**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -380,7 +380,7 @@ List.filterMap(x => if (x % 2 == 0) Some(toString(x)) else None, [1, 2, 3, 4]) = ### List.**filterMapi**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1248,7 +1248,7 @@ Returns: ### List.**findMap**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1435,7 +1435,7 @@ Returns: Utilities for working with lists of key-key value pairs.
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1454,7 +1454,7 @@ Functions and constants included in the List.Associative module. #### List.Associative.**has**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1494,7 +1494,7 @@ List.Associative.has("age", []) == false #### List.Associative.**get**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1535,7 +1535,7 @@ List.Associative.get("age", []) == None #### List.Associative.**set**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1578,7 +1578,7 @@ List.Associative.set("age", "30", [("name", "Alice")]) == [("name", "Alice"), (" #### List.Associative.**remove**
-Added in next +Added in 0.7.0 No other changes yet.
diff --git a/stdlib/number.md b/stdlib/number.md index bc04da564..4d504b1f4 100644 --- a/stdlib/number.md +++ b/stdlib/number.md @@ -1569,7 +1569,7 @@ Throws: ### Number.**sin**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1600,7 +1600,7 @@ Number.sin(0) == 0 ### Number.**cos**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1631,7 +1631,7 @@ Number.cos(0) == 1 ### Number.**tan**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1662,7 +1662,7 @@ Number.tan(0) == 0 ### Number.**gamma**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -1701,7 +1701,7 @@ Number.isClose(Number.gamma(0.5), Number.sqrt(Number.pi)) ### Number.**factorial**
-Added in next +Added in 0.7.0 No other changes yet.
diff --git a/stdlib/runtime/exception.md b/stdlib/runtime/exception.md index 6214bd283..1bf932d15 100644 --- a/stdlib/runtime/exception.md +++ b/stdlib/runtime/exception.md @@ -9,7 +9,7 @@ Functions and constants included in the Exception module. ### Exception.**registerBasePrinter**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -29,7 +29,7 @@ Parameters: ### Exception.**registerPrinter**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -51,7 +51,7 @@ Parameters: ### Exception.**toString**
-Added in next +Added in 0.7.0 No other changes yet.
diff --git a/stdlib/stack.md b/stdlib/stack.md index 946e833dd..33139cf49 100644 --- a/stdlib/stack.md +++ b/stdlib/stack.md @@ -228,7 +228,7 @@ Returns: ### Stack.**toList**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -262,7 +262,7 @@ assert Stack.toList(stack) == [2, 1] ### Stack.**fromList**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -297,7 +297,7 @@ assert Stack.pop(stack) == None ### Stack.**toArray**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -331,7 +331,7 @@ assert Stack.toArray(stack) == [> 2, 1] ### Stack.**fromArray**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -568,7 +568,7 @@ Returns: #### Stack.Immutable.**toList**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -603,7 +603,7 @@ assert Stack.toList(stack) == [2, 1] #### Stack.Immutable.**fromList**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -640,7 +640,7 @@ assert Stack.isEmpty(stack) #### Stack.Immutable.**toArray**
-Added in next +Added in 0.7.0 No other changes yet.
@@ -675,7 +675,7 @@ assert Stack.toArray(stack) == [> 2, 1] #### Stack.Immutable.**fromArray**
-Added in next +Added in 0.7.0 No other changes yet.
diff --git a/stdlib/string.md b/stdlib/string.md index 3f7e79ebb..0632c7214 100644 --- a/stdlib/string.md +++ b/stdlib/string.md @@ -1177,7 +1177,7 @@ assert String.toAsciiUppercase("aBc123") == "ABC123" ### String.**repeat**
-Added in next +Added in 0.6.7 No other changes yet.