From e76e4455e32ce48712bc4138ee6fc53df9383841 Mon Sep 17 00:00:00 2001
From: Planeshifter <1913638+Planeshifter@users.noreply.github.com>
Date: Sat, 11 Jul 2026 03:23:27 +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/blas/ext/base/README.md | 9 +++++++++
lib/node_modules/@stdlib/math/base/special/README.md | 2 +-
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/lib/node_modules/@stdlib/blas/ext/base/README.md b/lib/node_modules/@stdlib/blas/ext/base/README.md
index 19430cd7a00b..1feee61eb643 100644
--- a/lib/node_modules/@stdlib/blas/ext/base/README.md
+++ b/lib/node_modules/@stdlib/blas/ext/base/README.md
@@ -92,7 +92,9 @@ var o = ns;
- [`dediff( N, x, strideX, N1, prepend, strideP, N2, append, strideA, out, strideOut )`][@stdlib/blas/ext/base/dediff]: calculate the differences between consecutive elements of a double-precision floating-point strided array.
- [`dfillEqual( N, searchElement, alpha, x, strideX )`][@stdlib/blas/ext/base/dfill-equal]: replace double-precision floating-point strided array elements equal to a provided search element with a specified scalar constant.
- [`dfillNaN( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dfill-nan]: replace double-precision floating-point strided array elements equal to `NaN` with a specified scalar constant.
+- [`dfillNotEqual( N, searchElement, alpha, x, strideX )`][@stdlib/blas/ext/base/dfill-not-equal]: replace double-precision floating-point strided array elements not equal to a provided search element with a specified scalar constant.
- [`dfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dfill]: fill a double-precision floating-point strided array with a specified scalar constant.
+- [`dfirstIndexEqual( N, x, strideX, y, strideY )`][@stdlib/blas/ext/base/dfirst-index-equal]: return the index of the first element in a double-precision floating-point strided array equal to a corresponding element in another double-precision floating-point strided array.
- [`dindexOfColumn( order, M, N, A, LDA, x, strideX, workspace, strideW )`][@stdlib/blas/ext/base/dindex-of-column]: return the index of the first column in a double-precision floating-point input matrix which has the same elements as a provided search vector.
- [`dindexOfFalsy( N, x, strideX )`][@stdlib/blas/ext/base/dindex-of-falsy]: return the index of the first falsy element in a double-precision floating-point strided array.
- [`dindexOfNotEqual( N, searchElement, x, strideX )`][@stdlib/blas/ext/base/dindex-of-not-equal]: return the first index of an element in a double-precision floating-point strided array which is not equal to a specified search element.
@@ -295,6 +297,7 @@ var o = ns;
- [`sfillNaN( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sfill-nan]: replace single-precision floating-point strided array elements equal to `NaN` with a specified scalar constant.
- [`sfillNotEqual( N, searchElement, alpha, x, strideX )`][@stdlib/blas/ext/base/sfill-not-equal]: replace single-precision floating-point strided array elements not equal to a provided search element with a specified scalar constant.
- [`sfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sfill]: fill a single-precision floating-point strided array with a specified scalar constant.
+- [`sfirstIndexEqual( N, x, strideX, y, strideY )`][@stdlib/blas/ext/base/sfirst-index-equal]: return the index of the first element in a single-precision floating-point strided array equal to a corresponding element in another single-precision floating-point strided array.
- [`sindexOfColumn( order, M, N, A, LDA, x, strideX, workspace, strideW )`][@stdlib/blas/ext/base/sindex-of-column]: return the index of the first column in a single-precision floating-point input matrix which has the same elements as a provided search vector.
- [`sindexOfFalsy( N, x, strideX )`][@stdlib/blas/ext/base/sindex-of-falsy]: return the index of the first falsy element in a single-precision floating-point strided array.
- [`sindexOfRow( order, M, N, A, LDA, x, strideX, workspace, strideW )`][@stdlib/blas/ext/base/sindex-of-row]: return the index of the first row in a single-precision floating-point input matrix which has the same elements as a provided search vector.
@@ -515,8 +518,12 @@ console.log( objectKeys( ns ) );
[@stdlib/blas/ext/base/dfill-nan]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dfill-nan
+[@stdlib/blas/ext/base/dfill-not-equal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dfill-not-equal
+
[@stdlib/blas/ext/base/dfill]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dfill
+[@stdlib/blas/ext/base/dfirst-index-equal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dfirst-index-equal
+
[@stdlib/blas/ext/base/dindex-of-column]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dindex-of-column
[@stdlib/blas/ext/base/dindex-of-falsy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dindex-of-falsy
@@ -921,6 +928,8 @@ console.log( objectKeys( ns ) );
[@stdlib/blas/ext/base/sfill]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/sfill
+[@stdlib/blas/ext/base/sfirst-index-equal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/sfirst-index-equal
+
[@stdlib/blas/ext/base/sindex-of-column]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/sindex-of-column
[@stdlib/blas/ext/base/sindex-of-falsy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/sindex-of-falsy
diff --git a/lib/node_modules/@stdlib/math/base/special/README.md b/lib/node_modules/@stdlib/math/base/special/README.md
index c1e91989e287..59fbd65ea53e 100644
--- a/lib/node_modules/@stdlib/math/base/special/README.md
+++ b/lib/node_modules/@stdlib/math/base/special/README.md
@@ -348,7 +348,7 @@ var fcns = special;
- [`gamma( x )`][@stdlib/math/base/special/gamma]: gamma function.
- [`gamma1pm1( x )`][@stdlib/math/base/special/gamma1pm1]: compute `gamma(x+1) - 1`.
- [`gammainc( x, s[, regularized[, upper ]] )`][@stdlib/math/base/special/gammainc]: incomplete gamma function.
-- [`gammaincinv( p, s[, upper ] )`][@stdlib/math/base/special/gammaincinv]: inverse of incomplete gamma function.
+- [`gammaincinv( p, a[, upper ] )`][@stdlib/math/base/special/gammaincinv]: inverse of incomplete gamma function.
- [`gammaln( x )`][@stdlib/math/base/special/gammaln]: natural logarithm of the gamma function.
- [`gammasgn( x )`][@stdlib/math/base/special/gammasgn]: sign of the gamma function.
- [`gammasgnf( x )`][@stdlib/math/base/special/gammasgnf]: sign of the gamma function for a single-precision floating-point number.