From 3309efbf6805ef42e2763035ad51fe3dff494cfe Mon Sep 17 00:00:00 2001
From: Planeshifter <1913638+Planeshifter@users.noreply.github.com>
Date: Thu, 6 Mar 2025 02:40:35 +0000
Subject: [PATCH] docs: update namespace table of contents
Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com>
---
lib/node_modules/@stdlib/_tools/eslint/rules/README.md | 3 +++
lib/node_modules/@stdlib/stats/base/README.md | 3 ---
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/lib/node_modules/@stdlib/_tools/eslint/rules/README.md b/lib/node_modules/@stdlib/_tools/eslint/rules/README.md
index 3c83120ce98b..2358af28e5fb 100644
--- a/lib/node_modules/@stdlib/_tools/eslint/rules/README.md
+++ b/lib/node_modules/@stdlib/_tools/eslint/rules/README.md
@@ -65,6 +65,7 @@ var eslint = rules;
- [`new-cap-array`][@stdlib/_tools/eslint/rules/new-cap-array]: ESLint rule enforcing that the `Array` constructor is invoked with the `new` keyword.
- [`new-cap-error`][@stdlib/_tools/eslint/rules/new-cap-error]: ESLint rule enforcing that error constructors are invoked with the `new` keyword.
- [`new-cap-regexp`][@stdlib/_tools/eslint/rules/new-cap-regexp]: ESLint rule enforcing that the `RegExp` constructor is invoked with the `new` keyword.
+- [`no-builtin-big-int`][@stdlib/_tools/eslint/rules/no-builtin-big-int]: ESLint rule disallowing the use of the built-in global `BigInt` literal syntax and constructor.
- [`no-builtin-math`][@stdlib/_tools/eslint/rules/no-builtin-math]: ESLint rule enforcing that `stdlib` equivalents are used instead of the built-in global `Math` object.
- [`no-dynamic-exports`][@stdlib/_tools/eslint/rules/no-dynamic-exports]: ESLint rule enforcing that only statically analyzable values are exported.
- [`no-dynamic-require`][@stdlib/_tools/eslint/rules/no-dynamic-require]: ESLint rule enforcing that `require()` calls have only string literals as arguments.
@@ -397,6 +398,8 @@ console.log( getKeys( rules ) );
[@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
+[@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
+
[@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
[@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
diff --git a/lib/node_modules/@stdlib/stats/base/README.md b/lib/node_modules/@stdlib/stats/base/README.md
index a83a579823b3..366e10589ce7 100644
--- a/lib/node_modules/@stdlib/stats/base/README.md
+++ b/lib/node_modules/@stdlib/stats/base/README.md
@@ -71,7 +71,6 @@ The namespace contains the following statistical functions:
- [`dmskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dmskmax]: calculate the maximum value of a double-precision floating-point strided array according to a mask.
- [`dmskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dmskmin]: calculate the minimum value of a double-precision floating-point strided array according to a mask.
- [`dmskrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dmskrange]: calculate the range of a double-precision floating-point strided array according to a mask.
-- [`dnanmeanors( N, x, strideX )`][@stdlib/stats/strided/dnanmeanors]: calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using ordinary recursive summation.
- [`dnanmeanpn( N, x, strideX )`][@stdlib/stats/base/dnanmeanpn]: calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using a two-pass error correction algorithm.
- [`dnanmeanpw( N, x, strideX )`][@stdlib/stats/base/dnanmeanpw]: calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using pairwise summation.
- [`dnanmeanwd( N, x, strideX )`][@stdlib/stats/base/dnanmeanwd]: calculate the arithmetic mean of a double-precision floating-point strided array, using Welford's algorithm and ignoring `NaN` values.
@@ -330,8 +329,6 @@ console.log( objectKeys( ns ) );
[@stdlib/stats/base/dmskrange]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dmskrange
-[@stdlib/stats/strided/dnanmeanors]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dnanmeanors
-
[@stdlib/stats/base/dnanmeanpn]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dnanmeanpn
[@stdlib/stats/base/dnanmeanpw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dnanmeanpw