Skip to content

Commit 528116b

Browse files
authored
docs: update namespace table of contents
PR-URL: #5818 Reviewed-by: Philipp Burckhardt <[email protected]> Signed-off-by: stdlib-bot <[email protected]>
1 parent 99a8508 commit 528116b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/_tools/eslint/rules/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ var eslint = rules;
6565
- <span class="signature">[`new-cap-array`][@stdlib/_tools/eslint/rules/new-cap-array]</span><span class="delimiter">: </span><span class="description">ESLint rule enforcing that the `Array` constructor is invoked with the `new` keyword.</span>
6666
- <span class="signature">[`new-cap-error`][@stdlib/_tools/eslint/rules/new-cap-error]</span><span class="delimiter">: </span><span class="description">ESLint rule enforcing that error constructors are invoked with the `new` keyword.</span>
6767
- <span class="signature">[`new-cap-regexp`][@stdlib/_tools/eslint/rules/new-cap-regexp]</span><span class="delimiter">: </span><span class="description">ESLint rule enforcing that the `RegExp` constructor is invoked with the `new` keyword.</span>
68+
- <span class="signature">[`no-builtin-big-int`][@stdlib/_tools/eslint/rules/no-builtin-big-int]</span><span class="delimiter">: </span><span class="description">ESLint rule disallowing the use of the built-in global `BigInt` literal syntax and constructor.</span>
6869
- <span class="signature">[`no-builtin-math`][@stdlib/_tools/eslint/rules/no-builtin-math]</span><span class="delimiter">: </span><span class="description">ESLint rule enforcing that `stdlib` equivalents are used instead of the built-in global `Math` object.</span>
6970
- <span class="signature">[`no-dynamic-exports`][@stdlib/_tools/eslint/rules/no-dynamic-exports]</span><span class="delimiter">: </span><span class="description">ESLint rule enforcing that only statically analyzable values are exported.</span>
7071
- <span class="signature">[`no-dynamic-require`][@stdlib/_tools/eslint/rules/no-dynamic-require]</span><span class="delimiter">: </span><span class="description">ESLint rule enforcing that `require()` calls have only string literals as arguments.</span>
@@ -397,6 +398,8 @@ console.log( getKeys( rules ) );
397398

398399
[@stdlib/_tools/eslint/rules/new-cap-regexp]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/_tools/eslint/rules/new-cap-regexp
399400

401+
[@stdlib/_tools/eslint/rules/no-builtin-big-int]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/_tools/eslint/rules/no-builtin-big-int
402+
400403
[@stdlib/_tools/eslint/rules/no-builtin-math]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/_tools/eslint/rules/no-builtin-math
401404

402405
[@stdlib/_tools/eslint/rules/no-dynamic-exports]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/_tools/eslint/rules/no-dynamic-exports

lib/node_modules/@stdlib/stats/base/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ The namespace contains the following statistical functions:
7171
- <span class="signature">[`dmskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dmskmax]</span><span class="delimiter">: </span><span class="description">calculate the maximum value of a double-precision floating-point strided array according to a mask.</span>
7272
- <span class="signature">[`dmskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dmskmin]</span><span class="delimiter">: </span><span class="description">calculate the minimum value of a double-precision floating-point strided array according to a mask.</span>
7373
- <span class="signature">[`dmskrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dmskrange]</span><span class="delimiter">: </span><span class="description">calculate the range of a double-precision floating-point strided array according to a mask.</span>
74-
- <span class="signature">[`dnanmeanors( N, x, strideX )`][@stdlib/stats/strided/dnanmeanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using ordinary recursive summation.</span>
7574
- <span class="signature">[`dnanmeanpn( N, x, strideX )`][@stdlib/stats/base/dnanmeanpn]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using a two-pass error correction algorithm.</span>
7675
- <span class="signature">[`dnanmeanpw( N, x, strideX )`][@stdlib/stats/base/dnanmeanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using pairwise summation.</span>
7776
- <span class="signature">[`dnanmeanwd( N, x, strideX )`][@stdlib/stats/base/dnanmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array, using Welford's algorithm and ignoring `NaN` values.</span>
@@ -330,8 +329,6 @@ console.log( objectKeys( ns ) );
330329

331330
[@stdlib/stats/base/dmskrange]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dmskrange
332331

333-
[@stdlib/stats/strided/dnanmeanors]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dnanmeanors
334-
335332
[@stdlib/stats/base/dnanmeanpn]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dnanmeanpn
336333

337334
[@stdlib/stats/base/dnanmeanpw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dnanmeanpw

0 commit comments

Comments
 (0)