Skip to content

Commit 8d38b67

Browse files
committed
chore(stdlib): Regenerate markdown documentation
1 parent c17507d commit 8d38b67

File tree

14 files changed

+105
-105
lines changed

14 files changed

+105
-105
lines changed

stdlib/array.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Array.init(5, n => n + 3) == [> 3, 4, 5, 6, 7]
146146
### Array.**tryInit**
147147

148148
<details disabled>
149-
<summary tabindex="-1">Added in <code>next</code></summary>
149+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
150150
No other changes yet.
151151
</details>
152152

stdlib/bytes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ assert bytes == b"\x00\x00\x00\x00\x00"
434434
### Bytes.**getChar**
435435

436436
<details disabled>
437-
<summary tabindex="-1">Added in <code>next</code></summary>
437+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
438438
No other changes yet.
439439
</details>
440440

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

479479
<details disabled>
480-
<summary tabindex="-1">Added in <code>next</code></summary>
480+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
481481
No other changes yet.
482482
</details>
483483

stdlib/char.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Type declarations included in the Char module.
3434
### Char.**Encoding**
3535

3636
<details disabled>
37-
<summary tabindex="-1">Added in <code>next</code></summary>
37+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
3838
No other changes yet.
3939
</details>
4040

@@ -309,7 +309,7 @@ Char.toString('🌾') == "🌾"
309309
### Char.**encodedLength**
310310

311311
<details disabled>
312-
<summary tabindex="-1">Added in <code>next</code></summary>
312+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
313313
No other changes yet.
314314
</details>
315315

@@ -513,7 +513,7 @@ assert 'a' >= 'a'
513513
Utilities for working with ASCII characters.
514514

515515
<details disabled>
516-
<summary tabindex="-1">Added in <code>next</code></summary>
516+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
517517
No other changes yet.
518518
</details>
519519

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

530530
<details disabled>
531-
<summary tabindex="-1">Added in <code>next</code></summary>
531+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
532532
No other changes yet.
533533
</details>
534534

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

543543
<details disabled>
544-
<summary tabindex="-1">Added in <code>next</code></summary>
544+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
545545
No other changes yet.
546546
</details>
547547

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

556556
<details disabled>
557-
<summary tabindex="-1">Added in <code>next</code></summary>
557+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
558558
No other changes yet.
559559
</details>
560560

@@ -593,7 +593,7 @@ assert !Char.Ascii.isValid('🌾')
593593
#### Char.Ascii.**isDigit**
594594

595595
<details>
596-
<summary>Added in <code>next</code></summary>
596+
<summary>Added in <code>0.7.0</code></summary>
597597
<table>
598598
<thead>
599599
<tr><th>version</th><th>changes</th></tr>
@@ -635,7 +635,7 @@ assert !Char.Ascii.isDigit('a')
635635
#### Char.Ascii.**isAlpha**
636636

637637
<details>
638-
<summary>Added in <code>next</code></summary>
638+
<summary>Added in <code>0.7.0</code></summary>
639639
<table>
640640
<thead>
641641
<tr><th>version</th><th>changes</th></tr>
@@ -677,7 +677,7 @@ assert !Char.Ascii.isAlpha('1')
677677
#### Char.Ascii.**isControl**
678678

679679
<details disabled>
680-
<summary tabindex="-1">Added in <code>next</code></summary>
680+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
681681
No other changes yet.
682682
</details>
683683

@@ -720,7 +720,7 @@ assert !Char.Ascii.isControl('a')
720720
#### Char.Ascii.**isWhitespace**
721721

722722
<details disabled>
723-
<summary tabindex="-1">Added in <code>next</code></summary>
723+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
724724
No other changes yet.
725725
</details>
726726

@@ -763,7 +763,7 @@ assert !Char.isWhitespace('a')
763763
#### Char.Ascii.**isPunctuation**
764764

765765
<details disabled>
766-
<summary tabindex="-1">Added in <code>next</code></summary>
766+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
767767
No other changes yet.
768768
</details>
769769

@@ -798,7 +798,7 @@ assert !Char.Ascii.isPunctuation('1')
798798
#### Char.Ascii.**isGraphic**
799799

800800
<details disabled>
801-
<summary tabindex="-1">Added in <code>next</code></summary>
801+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
802802
No other changes yet.
803803
</details>
804804

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

835835
<details>
836-
<summary>Added in <code>next</code></summary>
836+
<summary>Added in <code>0.7.0</code></summary>
837837
<table>
838838
<thead>
839839
<tr><th>version</th><th>changes</th></tr>
@@ -871,7 +871,7 @@ assert Char.Ascii.toLowercase('B') == 'b'
871871
#### Char.Ascii.**toUppercase**
872872

873873
<details>
874-
<summary>Added in <code>next</code></summary>
874+
<summary>Added in <code>0.7.0</code></summary>
875875
<table>
876876
<thead>
877877
<tr><th>version</th><th>changes</th></tr>

stdlib/exception.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ throw ExampleError(1) // Error found on line: 1
6868
### Exception.**toString**
6969

7070
<details disabled>
71-
<summary tabindex="-1">Added in <code>next</code></summary>
71+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
7272
No other changes yet.
7373
</details>
7474

stdlib/float32.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ assert 10.0f / 4.0f == 2.5f
313313
### Float32.**(\*\*)**
314314

315315
<details disabled>
316-
<summary tabindex="-1">Added in <code>next</code></summary>
316+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
317317
No other changes yet.
318318
</details>
319319

@@ -516,7 +516,7 @@ assert 3.0f >= 3.0f
516516
### Float32.**isFinite**
517517

518518
<details disabled>
519-
<summary tabindex="-1">Added in <code>next</code></summary>
519+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
520520
No other changes yet.
521521
</details>
522522

@@ -658,7 +658,7 @@ Float32.isInfinite(1.0f) == false
658658
### Float32.**min**
659659

660660
<details disabled>
661-
<summary tabindex="-1">Added in <code>next</code></summary>
661+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
662662
No other changes yet.
663663
</details>
664664

@@ -690,7 +690,7 @@ Float32.min(5.0f, 2.0f) == 2.0f
690690
### Float32.**max**
691691

692692
<details disabled>
693-
<summary tabindex="-1">Added in <code>next</code></summary>
693+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
694694
No other changes yet.
695695
</details>
696696

@@ -792,7 +792,7 @@ Float32.neg(1.0f) == -1.0f
792792
### Float32.**ceil**
793793

794794
<details disabled>
795-
<summary tabindex="-1">Added in <code>next</code></summary>
795+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
796796
No other changes yet.
797797
</details>
798798

@@ -827,7 +827,7 @@ Float32.ceil(-5.5f) == -5.0f
827827
### Float32.**floor**
828828

829829
<details disabled>
830-
<summary tabindex="-1">Added in <code>next</code></summary>
830+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
831831
No other changes yet.
832832
</details>
833833

@@ -862,7 +862,7 @@ Float32.floor(-5.5f) == -6.0f
862862
### Float32.**trunc**
863863

864864
<details disabled>
865-
<summary tabindex="-1">Added in <code>next</code></summary>
865+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
866866
No other changes yet.
867867
</details>
868868

@@ -893,7 +893,7 @@ Float32.trunc(5.5f) == 5.0f
893893
### Float32.**round**
894894

895895
<details disabled>
896-
<summary tabindex="-1">Added in <code>next</code></summary>
896+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
897897
No other changes yet.
898898
</details>
899899

@@ -936,7 +936,7 @@ Float32.round(-5.4f) == -5.0f
936936
### Float32.**sqrt**
937937

938938
<details disabled>
939-
<summary tabindex="-1">Added in <code>next</code></summary>
939+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
940940
No other changes yet.
941941
</details>
942942

@@ -967,7 +967,7 @@ Float32.sqrt(25.0f) == 5.0f
967967
### Float32.**copySign**
968968

969969
<details disabled>
970-
<summary tabindex="-1">Added in <code>next</code></summary>
970+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
971971
No other changes yet.
972972
</details>
973973

@@ -1007,7 +1007,7 @@ Float32.copySign(-5.0f, 1.0f) == 5.0f
10071007
### Float32.**isClose**
10081008

10091009
<details disabled>
1010-
<summary tabindex="-1">Added in <code>next</code></summary>
1010+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
10111011
No other changes yet.
10121012
</details>
10131013

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

10731073
<details disabled>
1074-
<summary tabindex="-1">Added in <code>next</code></summary>
1074+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
10751075
No other changes yet.
10761076
</details>
10771077

@@ -1102,7 +1102,7 @@ Float32.sin(0.0f) == 0.0f
11021102
### Float32.**cos**
11031103

11041104
<details disabled>
1105-
<summary tabindex="-1">Added in <code>next</code></summary>
1105+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
11061106
No other changes yet.
11071107
</details>
11081108

@@ -1133,7 +1133,7 @@ Float32.cos(0.0f) == 1.0f
11331133
### Float32.**tan**
11341134

11351135
<details disabled>
1136-
<summary tabindex="-1">Added in <code>next</code></summary>
1136+
<summary tabindex="-1">Added in <code>0.7.0</code></summary>
11371137
No other changes yet.
11381138
</details>
11391139

0 commit comments

Comments
 (0)