Skip to content

Commit 07cd8d8

Browse files
committed
Auto-generated commit
1 parent 581990a commit 07cd8d8

File tree

5 files changed

+57
-1
lines changed

5 files changed

+57
-1
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-12-08)
7+
## Unreleased (2024-12-09)
88

99
<section class="packages">
1010

@@ -594,6 +594,7 @@ A total of 10 people contributed to this release. Thank you to the following con
594594

595595
<details>
596596

597+
- [`1c56b73`](https://github.com/stdlib-js/stdlib/commit/1c56b737ec018cc818cebf19e5c7947fa684e126) - **docs:** update related packages sections [(#3380)](https://github.com/stdlib-js/stdlib/pull/3380) _(by stdlib-bot)_
597598
- [`0a8192d`](https://github.com/stdlib-js/stdlib/commit/0a8192d68506a2abf4c3e52e1af9f1510e1660b4) - **docs:** update related packages sections [(#3370)](https://github.com/stdlib-js/stdlib/pull/3370) _(by stdlib-bot)_
598599
- [`7e8187a`](https://github.com/stdlib-js/stdlib/commit/7e8187a766886c2fb9cdc356cf781f0a1802172c) - **docs:** update related packages sections [(#3368)](https://github.com/stdlib-js/stdlib/pull/3368) _(by stdlib-bot)_
599600
- [`1d10ce5`](https://github.com/stdlib-js/stdlib/commit/1d10ce5163bb06f0b93f6dc0ef9697a8336054c2) - **feat:** add `includes` method to `array/fixed-endian-factory` [(#3283)](https://github.com/stdlib-js/stdlib/pull/3283) _(by Ahmed Kashkoush, Athan Reines, Muhammad Haris)_

bool/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -1833,6 +1833,12 @@ console.log( '%s', false );
18331833

18341834
<section class="related">
18351835

1836+
* * *
1837+
1838+
## See Also
1839+
1840+
- <span class="package-name">[`@stdlib/array/buffer`][@stdlib/array/buffer]</span><span class="delimiter">: </span><span class="description">ArrayBuffer.</span>
1841+
18361842
</section>
18371843

18381844
<!-- /.related -->

fixed-endian-float64/README.md

+13
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,13 @@ logEach( '%s', out );
422422

423423
<section class="related">
424424

425+
* * *
426+
427+
## See Also
428+
429+
- <span class="package-name">[`@stdlib/array/fixed-endian-float32`][@stdlib/array/fixed-endian-float32]</span><span class="delimiter">: </span><span class="description">Float32Array having a specified byte order.</span>
430+
- <span class="package-name">[`@stdlib/array/float64`][@stdlib/array/float64]</span><span class="delimiter">: </span><span class="description">Float64Array.</span>
431+
425432
</section>
426433

427434
<!-- /.related -->
@@ -438,6 +445,12 @@ logEach( '%s', out );
438445

439446
[@stdlib/array/float64]: https://github.com/stdlib-js/array/tree/main/float64
440447

448+
<!-- <related-links> -->
449+
450+
[@stdlib/array/fixed-endian-float32]: https://github.com/stdlib-js/array/tree/main/fixed-endian-float32
451+
452+
<!-- </related-links> -->
453+
441454
</section>
442455

443456
<!-- /.links -->

mskput/README.md

+18
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,14 @@ console.log( out );
146146

147147
<section class="related">
148148

149+
* * *
150+
151+
## See Also
152+
153+
- <span class="package-name">[`@stdlib/array/place`][@stdlib/array/place]</span><span class="delimiter">: </span><span class="description">replace elements of an array with provided values according to a provided mask array.</span>
154+
- <span class="package-name">[`@stdlib/array/put`][@stdlib/array/put]</span><span class="delimiter">: </span><span class="description">replace specified elements of an array with provided values.</span>
155+
- <span class="package-name">[`@stdlib/array/take`][@stdlib/array/take]</span><span class="delimiter">: </span><span class="description">take elements from an array.</span>
156+
149157
</section>
150158

151159
<!-- /.related -->
@@ -160,6 +168,16 @@ console.log( out );
160168

161169
[@stdlib/array/same-kind-casts]: https://github.com/stdlib-js/array/tree/main/same-kind-casts
162170

171+
<!-- <related-links> -->
172+
173+
[@stdlib/array/place]: https://github.com/stdlib-js/array/tree/main/place
174+
175+
[@stdlib/array/put]: https://github.com/stdlib-js/array/tree/main/put
176+
177+
[@stdlib/array/take]: https://github.com/stdlib-js/array/tree/main/take
178+
179+
<!-- </related-links> -->
180+
163181
</section>
164182

165183
<!-- /.links -->

put/README.md

+18
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,14 @@ console.log( out );
147147

148148
<section class="related">
149149

150+
* * *
151+
152+
## See Also
153+
154+
- <span class="package-name">[`@stdlib/array/mskput`][@stdlib/array/mskput]</span><span class="delimiter">: </span><span class="description">replace elements of an array with provided values according to a provided mask array.</span>
155+
- <span class="package-name">[`@stdlib/array/place`][@stdlib/array/place]</span><span class="delimiter">: </span><span class="description">replace elements of an array with provided values according to a provided mask array.</span>
156+
- <span class="package-name">[`@stdlib/array/take`][@stdlib/array/take]</span><span class="delimiter">: </span><span class="description">take elements from an array.</span>
157+
150158
</section>
151159

152160
<!-- /.related -->
@@ -165,6 +173,16 @@ console.log( out );
165173

166174
[@stdlib/array/same-kind-casts]: https://github.com/stdlib-js/array/tree/main/same-kind-casts
167175

176+
<!-- <related-links> -->
177+
178+
[@stdlib/array/mskput]: https://github.com/stdlib-js/array/tree/main/mskput
179+
180+
[@stdlib/array/place]: https://github.com/stdlib-js/array/tree/main/place
181+
182+
[@stdlib/array/take]: https://github.com/stdlib-js/array/tree/main/take
183+
184+
<!-- </related-links> -->
185+
168186
</section>
169187

170188
<!-- /.links -->

0 commit comments

Comments
 (0)