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 Oct 16, 2023
1 parent f343851 commit 28d82b9
Show file tree
Hide file tree
Showing 30 changed files with 386 additions and 386 deletions.
80 changes: 40 additions & 40 deletions stdlib/array.md
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ Returns:
<tr><th>version</th><th>changes</th></tr>
</thead>
<tbody>
<tr><td><code>next</code></td><td>Support zipping arrays of different sizes</td></tr>
<tr><td><code>0.6.0</code></td><td>Support zipping arrays of different sizes</td></tr>
</tbody>
</table>
</details>
Expand Down Expand Up @@ -1196,7 +1196,7 @@ Returns:
<tr><th>version</th><th>changes</th></tr>
</thead>
<tbody>
<tr><td><code>next</code></td><td>Default `end` to the Array length</td></tr>
<tr><td><code>0.6.0</code></td><td>Default `end` to the Array length</td></tr>
</tbody>
</table>
</details>
Expand Down Expand Up @@ -1256,7 +1256,7 @@ Parameters:
<tr><th>version</th><th>changes</th></tr>
</thead>
<tbody>
<tr><td><code>next</code></td><td>Behavior changed from right-rotation to left-rotation</td></tr>
<tr><td><code>0.6.0</code></td><td>Behavior changed from right-rotation to left-rotation</td></tr>
</tbody>
</table>
</details>
Expand Down Expand Up @@ -1291,7 +1291,7 @@ let array = [> 1, 2, 3, 4, 5]; rotate(-1, arr); arr == [> 5, 1, 2, 3, 4]
### Array.**chunk**

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

Expand Down Expand Up @@ -1337,7 +1337,7 @@ chunk(2, [> 1, 2, 3, 4]) == [> [> 1, 2], [> 3, 4] ]
An immutable array implementation.

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -1365,7 +1365,7 @@ Functions and constants included in the Array.Immutable module.
#### Array.Immutable.**empty**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand All @@ -1385,7 +1385,7 @@ An empty array.
#### Array.Immutable.**isEmpty**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -1417,7 +1417,7 @@ Returns:
#### Array.Immutable.**length**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -1455,7 +1455,7 @@ length(fromList([1, 2, 3, 4, 5])) == 5
#### Array.Immutable.**get**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -1505,7 +1505,7 @@ get(-1, fromList([1, 2, 3, 4])) == 4
#### Array.Immutable.**set**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -1553,7 +1553,7 @@ set(1, 9, fromList([1, 2, 3, 4, 5])) == fromList([1, 9, 3, 4, 5])
#### Array.Immutable.**append**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -1594,7 +1594,7 @@ append(fromList([1, 2]), fromList([3, 4, 5])) == fromList([1, 2, 3, 4, 5])
#### Array.Immutable.**concat**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -1633,7 +1633,7 @@ concat([fromList([1, 2]), fromList([3, 4]), fromList([5, 6])]) == fromList([1, 2
#### Array.Immutable.**init**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -1674,7 +1674,7 @@ init(5, i => i + 3) == fromList([3, 4, 5, 6, 7])
#### Array.Immutable.**make**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -1714,7 +1714,7 @@ make(5, "foo") == fromList(["foo", "foo", "foo", "foo", "foo"])
#### Array.Immutable.**forEach**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand All @@ -1741,7 +1741,7 @@ Parameters:
#### Array.Immutable.**cycle**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -1769,7 +1769,7 @@ Parameters:
#### Array.Immutable.**map**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -1803,7 +1803,7 @@ Returns:
#### Array.Immutable.**reduce**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -1849,7 +1849,7 @@ reduce((acc, x) => acc + x, 0, fromList([1, 2, 3])) == 6
#### Array.Immutable.**reduceRight**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -1895,7 +1895,7 @@ reduceRight((x, acc) => acc ++ x, "", fromList(["baz", "bar", "foo"])) == "fooba
#### Array.Immutable.**flatMap**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -1939,7 +1939,7 @@ flatMap(n => fromList([n, n + 1]), fromList([1, 3, 5])) == fromList([1, 2, 3, 4,
#### Array.Immutable.**fromList**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -1971,7 +1971,7 @@ Returns:
#### Array.Immutable.**toList**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -2003,7 +2003,7 @@ Returns:
#### Array.Immutable.**filter**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -2038,7 +2038,7 @@ Returns:
#### Array.Immutable.**every**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -2072,7 +2072,7 @@ Returns:
#### Array.Immutable.**some**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -2106,7 +2106,7 @@ Returns:
#### Array.Immutable.**reverse**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -2138,7 +2138,7 @@ Returns:
#### Array.Immutable.**contains**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -2172,7 +2172,7 @@ Returns:
#### Array.Immutable.**find**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -2205,7 +2205,7 @@ Returns:
#### Array.Immutable.**findIndex**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -2238,7 +2238,7 @@ Returns:
#### Array.Immutable.**product**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -2274,7 +2274,7 @@ Returns:
#### Array.Immutable.**count**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -2307,7 +2307,7 @@ Returns:
#### Array.Immutable.**unique**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -2340,7 +2340,7 @@ Returns:
#### Array.Immutable.**zip**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -2380,7 +2380,7 @@ Returns:
#### Array.Immutable.**zipWith**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -2433,7 +2433,7 @@ zipWith((a, b) => a * b, fromList([1, 2, 3]), fromList([4, 5])) == fromList([4,
#### Array.Immutable.**unzip**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -2466,7 +2466,7 @@ Returns:
#### Array.Immutable.**join**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -2499,14 +2499,14 @@ Returns:
#### Array.Immutable.**slice**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
</thead>
<tbody>
<tr><td><code>0.5.4</code></td><td>Originally in `"immutablearray"` module</td></tr>
<tr><td><code>next</code></td><td>Default `end` to the Array length</td></tr>
<tr><td><code>0.6.0</code></td><td>Default `end` to the Array length</td></tr>
</tbody>
</table>
</details>
Expand Down Expand Up @@ -2550,7 +2550,7 @@ slice(1, -1, fromList(['a', 'b', 'c'])) == fromList(['b'])
#### Array.Immutable.**sort**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down Expand Up @@ -2586,7 +2586,7 @@ Returns:
#### Array.Immutable.**rotate**

<details>
<summary>Added in <code>next</code></summary>
<summary>Added in <code>0.6.0</code></summary>
<table>
<thead>
<tr><th>version</th><th>changes</th></tr>
Expand Down
Loading

0 comments on commit 28d82b9

Please sign in to comment.