Skip to content

Commit b6ae0c9

Browse files
authored
docs: update namespace table of contents
PR-URL: #6139 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 9b2b107 commit b6ae0c9

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

lib/node_modules/@stdlib/console/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ var o = ns;
4343

4444
<div class="namespace-toc">
4545

46+
- <span class="signature">[`logEachMap( str[, ...args], clbk[, thisArg] )`][@stdlib/console/log-each-map]</span><span class="delimiter">: </span><span class="description">insert array element values and the result of a callback function into a format string and print the result.</span>
4647
- <span class="signature">[`logEach( str[, ...args] )`][@stdlib/console/log-each]</span><span class="delimiter">: </span><span class="description">insert array element values into a format string and print the result.</span>
4748
- <span class="signature">[`log( [data][,...args] )`][@stdlib/console/log]</span><span class="delimiter">: </span><span class="description">output a message to the debugger console.</span>
4849

@@ -87,6 +88,8 @@ console.log( objectKeys( ns ) );
8788

8889
<!-- <toc-links> -->
8990

91+
[@stdlib/console/log-each-map]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/console/log-each-map
92+
9093
[@stdlib/console/log-each]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/console/log-each
9194

9295
[@stdlib/console/log]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/console/log

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

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,6 @@ var fcns = special;
242242
- <span class="signature">[`cexp( z )`][@stdlib/math/base/special/cexp]</span><span class="delimiter">: </span><span class="description">evaluate the exponential function for a double-precision complex floating-point number.</span>
243243
- <span class="signature">[`cflipsign( z, y )`][@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>
244244
- <span class="signature">[`cflipsignf( z, y )`][@stdlib/math/base/special/cflipsignf]</span><span class="delimiter">: </span><span class="description">return a single-precision complex floating-point number with the same magnitude as `z` and the sign of `y*z`.</span>
245-
- <span class="signature">[`cidentity( z )`][@stdlib/complex/float64/base/identity]</span><span class="delimiter">: </span><span class="description">evaluate the identity function of a double-precision complex floating-point number.</span>
246245
- <span class="signature">[`cidentityf( z )`][@stdlib/math/base/special/cidentityf]</span><span class="delimiter">: </span><span class="description">evaluate the identity function of a single-precision complex floating-point number.</span>
247246
- <span class="signature">[`cinv( z )`][@stdlib/math/base/special/cinv]</span><span class="delimiter">: </span><span class="description">compute the inverse of a double-precision complex floating-point number.</span>
248247
- <span class="signature">[`copysign( x, y )`][@stdlib/math/base/special/copysign]</span><span class="delimiter">: </span><span class="description">return a double-precision floating-point number with the magnitude of `x` and the sign of `y`.</span>
@@ -290,8 +289,6 @@ var fcns = special;
290289
- <span class="signature">[`heaviside( x[, continuity] )`][@stdlib/math/base/special/heaviside]</span><span class="delimiter">: </span><span class="description">evaluate the Heaviside function.</span>
291290
- <span class="signature">[`hypot( x, y )`][@stdlib/math/base/special/hypot]</span><span class="delimiter">: </span><span class="description">compute the hypotenuse avoiding overflow and underflow.</span>
292291
- <span class="signature">[`hypotf( x, y )`][@stdlib/math/base/special/hypotf]</span><span class="delimiter">: </span><span class="description">compute the hypotenuse avoiding overflow and underflow (single-precision).</span>
293-
- <span class="signature">[`identity( x )`][@stdlib/number/float64/base/identity]</span><span class="delimiter">: </span><span class="description">evaluate the identity function of a double-precision floating-point number.</span>
294-
- <span class="signature">[`identityf( x )`][@stdlib/number/float32/base/identity]</span><span class="delimiter">: </span><span class="description">evaluate the identity function of a single-precision floating-point number.</span>
295292
- <span class="signature">[`inv( x )`][@stdlib/math/base/special/inv]</span><span class="delimiter">: </span><span class="description">compute the multiplicative inverse of a double-precision floating-point number.</span>
296293
- <span class="signature">[`invf( x )`][@stdlib/math/base/special/invf]</span><span class="delimiter">: </span><span class="description">compute the multiplicative inverse of a single-precision floating-point number.</span>
297294
- <span class="signature">[`kroneckerDelta( i, j )`][@stdlib/math/base/special/kronecker-delta]</span><span class="delimiter">: </span><span class="description">evaluate the Kronecker delta.</span>
@@ -480,8 +477,6 @@ console.log( objectKeys( special ) );
480477

481478
[@stdlib/math/base/special/cflipsignf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/cflipsignf
482479

483-
[@stdlib/complex/float64/base/identity]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64/base/identity
484-
485480
[@stdlib/math/base/special/cidentityf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/cidentityf
486481

487482
[@stdlib/math/base/special/cinv]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/cinv
@@ -576,10 +571,6 @@ console.log( objectKeys( special ) );
576571

577572
[@stdlib/math/base/special/hypotf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/hypotf
578573

579-
[@stdlib/number/float64/base/identity]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/float64/base/identity
580-
581-
[@stdlib/number/float32/base/identity]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/float32/base/identity
582-
583574
[@stdlib/math/base/special/inv]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/inv
584575

585576
[@stdlib/math/base/special/invf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/invf

0 commit comments

Comments
 (0)