Skip to content

Commit

Permalink
chore(stdlib): Regenerate markdown documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
grainbot committed Feb 17, 2025
1 parent a84380b commit e14fb2c
Show file tree
Hide file tree
Showing 13 changed files with 104 additions and 104 deletions.
4 changes: 2 additions & 2 deletions stdlib/bytes.md
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ assert bytes == b"\x00\x00\x00\x00\x00"
### Bytes.**getChar**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -477,7 +477,7 @@ assert Bytes.getChar(0, bytes) == 'H'
### Bytes.**setChar**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down
28 changes: 14 additions & 14 deletions stdlib/char.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Type declarations included in the Char module.
### Char.**Encoding**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -309,7 +309,7 @@ Char.toString('🌾') == "🌾"
### Char.**encodedLength**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -513,7 +513,7 @@ assert 'a' >= 'a'
Utilities for working with ASCII characters.

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand All @@ -528,7 +528,7 @@ Functions and constants included in the Char.Ascii module.
#### Char.Ascii.**min**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand All @@ -541,7 +541,7 @@ The minimum valid ASCII character code.
#### Char.Ascii.**max**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand All @@ -554,7 +554,7 @@ The maximum valid ASCII character code.
#### Char.Ascii.**isValid**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -593,7 +593,7 @@ assert !Char.Ascii.isValid('🌾')
#### Char.Ascii.**isDigit**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.7.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -635,7 +635,7 @@ assert !Char.Ascii.isDigit('a')
#### Char.Ascii.**isAlpha**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.7.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -677,7 +677,7 @@ assert !Char.Ascii.isAlpha('1')
#### Char.Ascii.**isControl**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -720,7 +720,7 @@ assert !Char.Ascii.isControl('a')
#### Char.Ascii.**isWhitespace**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -763,7 +763,7 @@ assert !Char.isWhitespace('a')
#### Char.Ascii.**isPunctuation**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -798,7 +798,7 @@ assert !Char.Ascii.isPunctuation('1')
#### Char.Ascii.**isGraphic**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -833,7 +833,7 @@ assert !Char.Ascii.isGraphic('\t')
#### Char.Ascii.**toLowercase**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.7.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -871,7 +871,7 @@ assert Char.Ascii.toLowercase('B') == 'b'
#### Char.Ascii.**toUppercase**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.7.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down
2 changes: 1 addition & 1 deletion stdlib/exception.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ throw ExampleError(1) // Error found on line: 1
### Exception.**toString**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down
28 changes: 14 additions & 14 deletions stdlib/float32.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ assert 10.0f / 4.0f == 2.5f
### Float32.**(\*\*)**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -516,7 +516,7 @@ assert 3.0f >= 3.0f
### Float32.**isFinite**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -658,7 +658,7 @@ Float32.isInfinite(1.0f) == false
### Float32.**min**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -690,7 +690,7 @@ Float32.min(5.0f, 2.0f) == 2.0f
### Float32.**max**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -792,7 +792,7 @@ Float32.neg(1.0f) == -1.0f
### Float32.**ceil**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -827,7 +827,7 @@ Float32.ceil(-5.5f) == -5.0f
### Float32.**floor**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -862,7 +862,7 @@ Float32.floor(-5.5f) == -6.0f
### Float32.**trunc**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -893,7 +893,7 @@ Float32.trunc(5.5f) == 5.0f
### Float32.**round**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -936,7 +936,7 @@ Float32.round(-5.4f) == -5.0f
### Float32.**sqrt**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -967,7 +967,7 @@ Float32.sqrt(25.0f) == 5.0f
### Float32.**copySign**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -1007,7 +1007,7 @@ Float32.copySign(-5.0f, 1.0f) == 5.0f
### Float32.**isClose**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -1071,7 +1071,7 @@ Float32.isClose(4.0f, 4.1f, relativeTolerance=0.024f) == false
### Float32.**sin**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -1102,7 +1102,7 @@ Float32.sin(0.0f) == 0.0f
### Float32.**cos**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -1133,7 +1133,7 @@ Float32.cos(0.0f) == 1.0f
### Float32.**tan**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
No other changes yet.
</details>

Expand Down
Loading

0 comments on commit e14fb2c

Please sign in to comment.