Skip to content

Commit fe1a276

Browse files
authored
docs: update related packages sections
PR-URL: stdlib-js#1220 Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 6919d07 commit fe1a276

File tree

4 files changed

+48
-0
lines changed

4 files changed

+48
-0
lines changed

lib/node_modules/@stdlib/math/base/special/cflipsignf/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@ int main( void ) {
207207

208208
## See Also
209209

210+
- <span class="package-name">[`@stdlib/math/base/ops/cnegf`][@stdlib/math/base/ops/cnegf]</span><span class="delimiter">: </span><span class="description">negate a single-precision complex floating-point number.</span>
210211
- <span class="package-name">[`@stdlib/math/base/special/cflipsign`][@stdlib/math/base/special/cflipsign]</span><span class="delimiter">: </span><span class="description">return a double-precision complex floating-point number with the same magnitude as `z` and the sign of `y*z`.</span>
211212

212213
</section>
@@ -219,6 +220,8 @@ int main( void ) {
219220

220221
<!-- <related-links> -->
221222

223+
[@stdlib/math/base/ops/cnegf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/ops/cnegf
224+
222225
[@stdlib/math/base/special/cflipsign]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/cflipsign
223226

224227
<!-- </related-links> -->

lib/node_modules/@stdlib/number/uint8/base/from-binary-string/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,14 @@ for ( i = 0; i < 256; i++ ) {
8686

8787
<section class="related">
8888

89+
* * *
90+
91+
## See Also
92+
93+
- <span class="package-name">[`@stdlib/number/uint16/base/from-binary-string`][@stdlib/number/uint16/base/from-binary-string]</span><span class="delimiter">: </span><span class="description">create an unsigned 16-bit integer from a literal bit representation.</span>
94+
- <span class="package-name">[`@stdlib/number/uint32/base/from-binary-string`][@stdlib/number/uint32/base/from-binary-string]</span><span class="delimiter">: </span><span class="description">create an unsigned 32-bit integer from a literal bit representation.</span>
95+
- <span class="package-name">[`@stdlib/number/uint8/base/to-binary-string`][@stdlib/number/uint8/base/to-binary-string]</span><span class="delimiter">: </span><span class="description">return a string giving the literal bit representation of an unsigned 8-bit integer.</span>
96+
8997
</section>
9098

9199
<!-- /.related -->
@@ -96,6 +104,14 @@ for ( i = 0; i < 256; i++ ) {
96104

97105
[@stdlib/number/uint8/base/to-binary-string]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/uint8/base/to-binary-string
98106

107+
<!-- <related-links> -->
108+
109+
[@stdlib/number/uint16/base/from-binary-string]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/uint16/base/from-binary-string
110+
111+
[@stdlib/number/uint32/base/from-binary-string]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/uint32/base/from-binary-string
112+
113+
<!-- </related-links> -->
114+
99115
</section>
100116

101117
<!-- /.links -->

lib/node_modules/@stdlib/random/array/arcsine/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,13 @@ logEach( '%f', x4 );
331331

332332
<section class="related">
333333

334+
* * *
335+
336+
## See Also
337+
338+
- <span class="package-name">[`@stdlib/random/base/arcsine`][@stdlib/random/base/arcsine]</span><span class="delimiter">: </span><span class="description">arcsine distributed pseudorandom numbers.</span>
339+
- <span class="package-name">[`@stdlib/random/strided/arcsine`][@stdlib/random/strided/arcsine]</span><span class="delimiter">: </span><span class="description">fill a strided array with pseudorandom numbers drawn from an arcsine distribution.</span>
340+
334341
</section>
335342

336343
<!-- /.related -->
@@ -347,6 +354,12 @@ logEach( '%f', x4 );
347354

348355
[@stdlib/array/float64]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/float64
349356

357+
<!-- <related-links> -->
358+
359+
[@stdlib/random/strided/arcsine]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/strided/arcsine
360+
361+
<!-- </related-links> -->
362+
350363
</section>
351364

352365
<!-- /.links -->

lib/node_modules/@stdlib/random/strided/mt19937/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,14 @@ logEach( 'x1[%d] = %.2f; x2[%d] = %.2f', idx, x1, idx, x2 );
223223

224224
<section class="related">
225225

226+
* * *
227+
228+
## See Also
229+
230+
- <span class="package-name">[`@stdlib/random/base/mt19937`][@stdlib/random/base/mt19937]</span><span class="delimiter">: </span><span class="description">A 32-bit Mersenne Twister pseudorandom number generator.</span>
231+
- <span class="package-name">[`@stdlib/random/array/mt19937`][@stdlib/random/array/mt19937]</span><span class="delimiter">: </span><span class="description">create an array containing pseudorandom numbers generated using a 32-bit Mersenne Twister pseudorandom number generator.</span>
232+
- <span class="package-name">[`@stdlib/random/strided/randu`][@stdlib/random/strided/randu]</span><span class="delimiter">: </span><span class="description">fill a strided array with uniformly distributed pseudorandom numbers between 0 and 1.</span>
233+
226234
</section>
227235

228236
<!-- /.related -->
@@ -237,6 +245,14 @@ logEach( 'x1[%d] = %.2f; x2[%d] = %.2f', idx, x1, idx, x2 );
237245

238246
[@stdlib/array/uint32]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/uint32
239247

248+
<!-- <related-links> -->
249+
250+
[@stdlib/random/array/mt19937]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/array/mt19937
251+
252+
[@stdlib/random/strided/randu]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/strided/randu
253+
254+
<!-- </related-links> -->
255+
240256
</section>
241257

242258
<!-- /.links -->

0 commit comments

Comments
 (0)