From bc37f9714afd1a98c42a79af900d4b1c2800a36f Mon Sep 17 00:00:00 2001
From: Planeshifter <1913638+Planeshifter@users.noreply.github.com>
Date: Fri, 31 Jul 2026 03:25:04 +0000
Subject: [PATCH] docs: update namespace table of contents
Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com>
---
.../@stdlib/blas/ext/base/README.md | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/lib/node_modules/@stdlib/blas/ext/base/README.md b/lib/node_modules/@stdlib/blas/ext/base/README.md
index e4571d70042e..e8e6d8bc83c7 100644
--- a/lib/node_modules/@stdlib/blas/ext/base/README.md
+++ b/lib/node_modules/@stdlib/blas/ext/base/README.md
@@ -50,6 +50,7 @@ var o = ns;
- [`cfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/cfill]: fill a single-precision complex floating-point strided array with a specified scalar constant.
- [`cindexOfColumn( order, M, N, A, LDA, x, strideX, workspace, strideW )`][@stdlib/blas/ext/base/cindex-of-column]: return the index of the first column in a single-precision complex floating-point input matrix which has the same elements as a provided search vector.
- [`cindexOfRow( order, M, N, A, LDA, x, strideX, workspace, strideW )`][@stdlib/blas/ext/base/cindex-of-row]: return the index of the first row in a single-precision complex floating-point input matrix which has the same elements as a provided search vector.
+- [`cindexOfTruthy( N, x, strideX )`][@stdlib/blas/ext/base/cindex-of-truthy]: return the index of the first truthy element in a single-precision complex floating-point strided array.
- [`cindexOf( N, searchElement, x, strideX )`][@stdlib/blas/ext/base/cindex-of]: return the first index of a specified search element in a single-precision complex floating-point strided array.
- [`clastIndexOfRow( order, M, N, A, LDA, x, strideX, workspace, strideW )`][@stdlib/blas/ext/base/clast-index-of-row]: return the index of the last row in a single-precision complex floating-point input matrix which has the same elements as a provided search vector.
- [`clogspace( N, base, start, stop, endpoint, x, strideX )`][@stdlib/blas/ext/base/clogspace]: fill a single-precision complex floating-point strided array with logarithmically spaced values over a specified interval.
@@ -166,6 +167,7 @@ var o = ns;
- [`dwxmy( N, x, strideX, y, strideY, w, strideW )`][@stdlib/blas/ext/base/dwxmy]: multiply elements of a double-precision floating-point strided array `x` by the corresponding elements of a double-precision floating-point strided array `y` and assign the results to elements in a double-precision floating-point strided array `w`.
- [`dwxpy( N, x, strideX, y, strideY, w, strideW )`][@stdlib/blas/ext/base/dwxpy]: add elements of a double-precision floating-point strided array `x` to the corresponding elements of a double-precision floating-point strided array `y` and assign the results to elements in a double-precision floating-point strided array `w`.
- [`dwxsa( N, alpha, x, strideX, w, strideW )`][@stdlib/blas/ext/base/dwxsa]: subtract a scalar constant from each element in a double-precision floating-point strided array `x` and assign the results to elements in a double-precision floating-point strided array `w`.
+- [`dwxsy( N, x, strideX, y, strideY, w, strideW )`][@stdlib/blas/ext/base/dwxsy]: subtract elements of a double-precision floating-point strided array `y` from the corresponding elements of a double-precision floating-point strided array `x` and assign the results to elements in a double-precision floating-point strided array `w`.
- [`dxdy( N, x, strideX, y, strideY )`][@stdlib/blas/ext/base/dxdy]: divide elements of a double-precision floating-point strided array `x` by the corresponding elements of a double-precision floating-point strided array `y` and assign the results to `y`.
- [`dxmy( N, x, strideX, y, strideY )`][@stdlib/blas/ext/base/dxmy]: multiply elements of a double-precision floating-point strided array `x` by the corresponding elements of a double-precision floating-point strided array `y` and assign the results to `y`.
- [`dxpy( N, x, strideX, y, strideY )`][@stdlib/blas/ext/base/dxpy]: add elements of a double-precision floating-point strided array `x` to the corresponding elements of a double-precision floating-point strided array `y` and assign the results to `y`.
@@ -355,7 +357,10 @@ var o = ns;
- [`swapx( N, alpha, x, strideX, w, strideW )`][@stdlib/blas/ext/base/swapx]: add a scalar constant to each element in a single-precision floating-point strided array `x` and assign the results to elements in a single-precision floating-point strided array `w`.
- [`swax( N, alpha, x, strideX, w, strideW )`][@stdlib/blas/ext/base/swax]: multiply each element in a single-precision floating-point strided array `x` by a scalar constant and assign the results to elements in a single-precision floating-point strided array `w`.
- [`swhere( N, condition, strideC, x, strideX, y, strideY, out, strideOut )`][@stdlib/blas/ext/base/swhere]: take elements from one of two single-precision floating-point strided arrays depending on a condition.
+- [`swxmy( N, x, strideX, y, strideY, w, strideW )`][@stdlib/blas/ext/base/swxmy]: multiply elements of a single-precision floating-point strided array `x` by the corresponding elements of a single-precision floating-point strided array `y` and assign the results to elements in a single-precision floating-point strided array `w`.
+- [`swxpy( N, x, strideX, y, strideY, w, strideW )`][@stdlib/blas/ext/base/swxpy]: add elements of a single-precision floating-point strided array `x` to the corresponding elements of a single-precision floating-point strided array `y` and assign the results to elements in a single-precision floating-point strided array `w`.
- [`swxsa( N, alpha, x, strideX, w, strideW )`][@stdlib/blas/ext/base/swxsa]: subtract a scalar constant from each element in a single-precision floating-point strided array `x` and assign the results to elements in a single-precision floating-point strided array `w`.
+- [`swxsy( N, x, strideX, y, strideY, w, strideW )`][@stdlib/blas/ext/base/swxsy]: subtract elements of a single-precision floating-point strided array `y` from the corresponding elements of a single-precision floating-point strided array `x` and assign the results to elements in a single-precision floating-point strided array `w`.
- [`sxdy( N, x, strideX, y, strideY )`][@stdlib/blas/ext/base/sxdy]: divide elements of a single-precision floating-point strided array `x` by the corresponding elements of a single-precision floating-point strided array `y` and assign the results to `y`.
- [`sxmy( N, x, strideX, y, strideY )`][@stdlib/blas/ext/base/sxmy]: multiply elements of a single-precision floating-point strided array `x` by the corresponding elements of a single-precision floating-point strided array `y` and assign the results to `y`.
- [`sxpy( N, x, strideX, y, strideY )`][@stdlib/blas/ext/base/sxpy]: add elements of a single-precision floating-point strided array `x` to the corresponding elements of a single-precision floating-point strided array `y` and assign the results to `y`.
@@ -372,6 +377,7 @@ var o = ns;
- [`zdiff( N, k, x, strideX, N1, prepend, strideP, N2, append, strideA, out, strideOut, workspace, strideW )`][@stdlib/blas/ext/base/zdiff]: calculate the k-th discrete forward difference of a double-precision complex floating-point strided array.
- [`zfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/zfill]: fill a double-precision complex floating-point strided array with a specified scalar constant.
- [`zindexOfColumn( order, M, N, A, LDA, x, strideX, workspace, strideW )`][@stdlib/blas/ext/base/zindex-of-column]: return the index of the first column in a double-precision complex floating-point input matrix which has the same elements as a provided search vector.
+- [`zindexOfFalsy( N, x, strideX )`][@stdlib/blas/ext/base/zindex-of-falsy]: return the index of the first falsy element in a double-precision complex floating-point strided array.
- [`zindexOfRow( order, M, N, A, LDA, x, strideX, workspace, strideW )`][@stdlib/blas/ext/base/zindex-of-row]: return the index of the first row in a double-precision complex floating-point input matrix which has the same elements as a provided search vector.
- [`zindexOfTruthy( N, x, strideX )`][@stdlib/blas/ext/base/zindex-of-truthy]: return the index of the first truthy element in a double-precision complex floating-point strided array.
- [`zindexOf( N, searchElement, x, strideX )`][@stdlib/blas/ext/base/zindex-of]: return the first index of a specified search element in a double-precision complex floating-point strided array.
@@ -457,6 +463,8 @@ console.log( objectKeys( ns ) );
[@stdlib/blas/ext/base/cindex-of-row]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/cindex-of-row
+[@stdlib/blas/ext/base/cindex-of-truthy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/cindex-of-truthy
+
[@stdlib/blas/ext/base/cindex-of]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/cindex-of
[@stdlib/blas/ext/base/clast-index-of-row]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/clast-index-of-row
@@ -689,6 +697,8 @@ console.log( objectKeys( ns ) );
[@stdlib/blas/ext/base/dwxsa]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dwxsa
+[@stdlib/blas/ext/base/dwxsy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dwxsy
+
[@stdlib/blas/ext/base/dxdy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dxdy
[@stdlib/blas/ext/base/dxmy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dxmy
@@ -1067,8 +1077,14 @@ console.log( objectKeys( ns ) );
[@stdlib/blas/ext/base/swhere]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/swhere
+[@stdlib/blas/ext/base/swxmy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/swxmy
+
+[@stdlib/blas/ext/base/swxpy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/swxpy
+
[@stdlib/blas/ext/base/swxsa]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/swxsa
+[@stdlib/blas/ext/base/swxsy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/swxsy
+
[@stdlib/blas/ext/base/sxdy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/sxdy
[@stdlib/blas/ext/base/sxmy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/sxmy
@@ -1101,6 +1117,8 @@ console.log( objectKeys( ns ) );
[@stdlib/blas/ext/base/zindex-of-column]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/zindex-of-column
+[@stdlib/blas/ext/base/zindex-of-falsy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/zindex-of-falsy
+
[@stdlib/blas/ext/base/zindex-of-row]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/zindex-of-row
[@stdlib/blas/ext/base/zindex-of-truthy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/zindex-of-truthy