diff --git a/lib/node_modules/@stdlib/_tools/eslint/rules/README.md b/lib/node_modules/@stdlib/_tools/eslint/rules/README.md index 7bc156825e70..0a24d3fb80c7 100644 --- a/lib/node_modules/@stdlib/_tools/eslint/rules/README.md +++ b/lib/node_modules/@stdlib/_tools/eslint/rules/README.md @@ -112,6 +112,7 @@ var eslint = rules; - [`jsdoc-doctest`][@stdlib/_tools/eslint/rules/jsdoc-doctest]: ESLint rule to ensure that return annotations in example code match the actual output. - [`jsdoc-emphasis-marker`][@stdlib/_tools/eslint/rules/jsdoc-emphasis-marker]: ESLint rule to enforce a specific Markdown emphasis marker in JSDoc descriptions. - [`jsdoc-empty-line-before-example`][@stdlib/_tools/eslint/rules/jsdoc-empty-line-before-example]: ESLint rule to enforce empty lines before JSDoc `@example` tags. +- [`jsdoc-example-require-spacing`][@stdlib/_tools/eslint/rules/jsdoc-example-require-spacing]: ESLint rule to enforce empty lines between `require` statements and code in JSDoc examples. - [`jsdoc-fenced-code-flag`][@stdlib/_tools/eslint/rules/jsdoc-fenced-code-flag]: ESLint rule to enforce fenced Markdown code blocks to have a language flag in JSDoc descriptions. - [`jsdoc-fenced-code-marker`][@stdlib/_tools/eslint/rules/jsdoc-fenced-code-marker]: ESLint rule to enforce a specific Markdown fenced code marker in JSDoc descriptions. - [`jsdoc-final-definition`][@stdlib/_tools/eslint/rules/jsdoc-final-definition]: ESLint rule to require Markdown definitions in JSDoc descriptions be placed at the end of the description. @@ -240,6 +241,8 @@ console.log( getKeys( rules ) ); [@stdlib/_tools/eslint/rules/jsdoc-empty-line-before-example]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/_tools/eslint/rules/jsdoc-empty-line-before-example +[@stdlib/_tools/eslint/rules/jsdoc-example-require-spacing]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/_tools/eslint/rules/jsdoc-example-require-spacing + [@stdlib/_tools/eslint/rules/jsdoc-fenced-code-flag]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/_tools/eslint/rules/jsdoc-fenced-code-flag [@stdlib/_tools/eslint/rules/jsdoc-fenced-code-marker]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/_tools/eslint/rules/jsdoc-fenced-code-marker diff --git a/lib/node_modules/@stdlib/blas/base/README.md b/lib/node_modules/@stdlib/blas/base/README.md index f6b7ee06ca20..4f376db99815 100644 --- a/lib/node_modules/@stdlib/blas/base/README.md +++ b/lib/node_modules/@stdlib/blas/base/README.md @@ -87,6 +87,7 @@ var o = blas; - [`zaxpy( N, za, zx, strideX, zy, strideY )`][@stdlib/blas/base/zaxpy]: scale a double-precision complex floating-point vector by a double-precision complex floating-point constant and add the result to a double-precision complex floating-point vector. - [`zcopy( N, x, strideX, y, strideY )`][@stdlib/blas/base/zcopy]: copy values from one complex double-precision floating-point vector to another complex double-precision floating-point vector. - [`zdrot( N, zx, strideX, zy, strideY, c, s )`][@stdlib/blas/base/zdrot]: applies a plane rotation. +- [`zdscal( N, da, zx, strideZX )`][@stdlib/blas/base/zdscal]: scale a double-precision complex floating-point vector by a double-precision floating-point constant. - [`zscal( N, alpha, x, strideX )`][@stdlib/blas/base/zscal]: scales a double-precision complex floating-point vector by a double-precision complex floating-point constant. - [`zswap( N, x, strideX, y, strideY )`][@stdlib/blas/base/zswap]: interchange two complex double-precision floating-point vectors. @@ -100,17 +101,22 @@ var o = blas;
+- [`dgemv( ord, trans, M, N, α, A, LDA, x, sx, β, y, sy )`][@stdlib/blas/base/dgemv]: perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A**T*x + β*y`. - [`dspmv( order, uplo, N, α, AP, x, sx, β, y, sy )`][@stdlib/blas/base/dspmv]: perform the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors and, `A` is an `N` by `N` symmetric matrix supplied in packed form. +- [`dspr( order, uplo, N, α, x, sx, AP )`][@stdlib/blas/base/dspr]: perform the symmetric rank 1 operation `A = α*x*x^T + A`. - [`dsymv( order, uplo, N, α, A, LDA, x, sx, β, y, sy )`][@stdlib/blas/base/dsymv]: perform the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric matrix. - [`dsyr( order, uplo, N, α, x, sx, A, LDA )`][@stdlib/blas/base/dsyr]: perform the symmetric rank 1 operation `A = α*x*x^T + A`. - [`dsyr2( order, uplo, N, α, x, sx, y, sy, A, LDA )`][@stdlib/blas/base/dsyr2]: perform the symmetric rank 2 operation `A = α*x*y^T + α*y*x^T + A`. - [`dtrmv( order, uplo, trans, diag, N, A, LDA, x, sx )`][@stdlib/blas/base/dtrmv]: perform one of the matrix-vector operations `x = A*x` or `x = A^T*x`. +- [`dtrsv( order, uplo, trans, diag, N, A, LDA, x, sx )`][@stdlib/blas/base/dtrsv]: solve one of the systems of equations `A*x = b` or `A^T*x = b`. - [`sgemv( ord, trans, M, N, α, A, LDA, x, sx, β, y, sy )`][@stdlib/blas/base/sgemv]: perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`. - [`sspmv( order, uplo, N, α, AP, x, sx, β, y, sy )`][@stdlib/blas/base/sspmv]: perform the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors and, `A` is an `N` by `N` symmetric matrix supplied in packed form. +- [`sspr( order, uplo, N, α, x, sx, AP )`][@stdlib/blas/base/sspr]: perform the symmetric rank 1 operation `A = α*x*x^T + A`. - [`ssymv( order, uplo, N, α, A, LDA, x, sx, β, y, sy )`][@stdlib/blas/base/ssymv]: perform the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric matrix. - [`ssyr( order, uplo, N, α, x, sx, A, LDA )`][@stdlib/blas/base/ssyr]: perform the symmetric rank 1 operation `A = α*x*x**T + A`. - [`ssyr2( order, uplo, N, α, x, sx, y, sy, A, LDA )`][@stdlib/blas/base/ssyr2]: perform the symmetric rank 2 operation `A = α*x*y^T + α*y*x^T + A`. - [`strmv( order, uplo, trans, diag, N, A, LDA, x, sx )`][@stdlib/blas/base/strmv]: perform one of the matrix-vector operations `x = A*x` or `x = A^T*x`. +- [`strsv( order, uplo, trans, diag, N, A, LDA, x, sx )`][@stdlib/blas/base/strsv]: solve one of the systems of equations `A*x = b` or `A^T*x = b`.
@@ -120,6 +126,13 @@ var o = blas; +
+ +- [`dgemm( ord, ta, tb, M, N, K, α, A, lda, B, ldb, β, C, ldc )`][@stdlib/blas/base/dgemm]: perform the matrix-matrix operation `C = α*op(A)*op(B) + β*C` where `op(X)` is one of the `op(X) = X`, or `op(X) = X^T`. +- [`sgemm( ord, ta, tb, M, N, K, α, A, lda, B, ldb, β, C, ldc )`][@stdlib/blas/base/sgemm]: perform the matrix-matrix operation `C = α*op(A)*op(B) + β*C` where `op(X)` is one of the `op(X) = X`, or `op(X) = X^T`. + +
+ ### Scalar Operations @@ -271,8 +284,16 @@ console.log( objectKeys( blas ) ); [@stdlib/blas/base/scabs1]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/scabs1 +[@stdlib/blas/base/dgemm]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/dgemm + +[@stdlib/blas/base/sgemm]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/sgemm + +[@stdlib/blas/base/dgemv]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/dgemv + [@stdlib/blas/base/dspmv]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/dspmv +[@stdlib/blas/base/dspr]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/dspr + [@stdlib/blas/base/dsymv]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/dsymv [@stdlib/blas/base/dsyr]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/dsyr @@ -281,10 +302,14 @@ console.log( objectKeys( blas ) ); [@stdlib/blas/base/dtrmv]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/dtrmv +[@stdlib/blas/base/dtrsv]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/dtrsv + [@stdlib/blas/base/sgemv]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/sgemv [@stdlib/blas/base/sspmv]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/sspmv +[@stdlib/blas/base/sspr]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/sspr + [@stdlib/blas/base/ssymv]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/ssymv [@stdlib/blas/base/ssyr]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/ssyr @@ -293,6 +318,8 @@ console.log( objectKeys( blas ) ); [@stdlib/blas/base/strmv]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/strmv +[@stdlib/blas/base/strsv]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/strsv + [@stdlib/blas/base/caxpy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/caxpy [@stdlib/blas/base/ccopy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/ccopy @@ -377,6 +404,8 @@ console.log( objectKeys( blas ) ); [@stdlib/blas/base/zdrot]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/zdrot +[@stdlib/blas/base/zdscal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/zdscal + [@stdlib/blas/base/zscal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/zscal [@stdlib/blas/base/zswap]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/zswap diff --git a/lib/node_modules/@stdlib/blas/ext/base/README.md b/lib/node_modules/@stdlib/blas/ext/base/README.md index a2c04b9e80ed..bf22466878ec 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/README.md +++ b/lib/node_modules/@stdlib/blas/ext/base/README.md @@ -157,6 +157,7 @@ var o = ns; - [`ssumkbn2( N, x, strideX )`][@stdlib/blas/ext/base/ssumkbn2]: calculate the sum of single-precision floating-point strided array elements using a second-order iterative Kahan–Babuška algorithm. - [`ssumors( N, x, strideX )`][@stdlib/blas/ext/base/ssumors]: calculate the sum of single-precision floating-point strided array elements using ordinary recursive summation. - [`ssumpw( N, x, strideX )`][@stdlib/blas/ext/base/ssumpw]: calculate the sum of single-precision floating-point strided array elements using pairwise summation. +- [`wasm`][@stdlib/blas/ext/base/wasm]: extensions to basic linear algebra subprograms (BLAS) compiled to WebAssembly. @@ -435,6 +436,8 @@ console.log( objectKeys( ns ) ); [@stdlib/blas/ext/base/ssumpw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/ssumpw +[@stdlib/blas/ext/base/wasm]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/wasm + diff --git a/lib/node_modules/@stdlib/dstructs/README.md b/lib/node_modules/@stdlib/dstructs/README.md index 2f2fb6e76789..dd52be2bc592 100644 --- a/lib/node_modules/@stdlib/dstructs/README.md +++ b/lib/node_modules/@stdlib/dstructs/README.md @@ -43,6 +43,14 @@ var o = ns;
+- [`CircularBuffer( buffer )`][@stdlib/dstructs/circular-buffer]: circular buffer constructor. +- [`CompactAdjacencyMatrix( N )`][@stdlib/dstructs/compact-adjacency-matrix]: compact adjacency matrix constructor. +- [`DoublyLinkedList()`][@stdlib/dstructs/doubly-linked-list]: doubly linked list constructor. +- [`FIFO()`][@stdlib/dstructs/fifo]: first-in-first-out (FIFO) queue. +- [`LinkedList()`][@stdlib/dstructs/linked-list]: singly linked list. +- [`namedtypedtuple( fields[, options] )`][@stdlib/dstructs/named-typed-tuple]: create a factory for generating named typed tuples. +- [`Stack()`][@stdlib/dstructs/stack]: stack data structure. +
@@ -84,6 +92,20 @@ console.log( objectKeys( ns ) ); +[@stdlib/dstructs/circular-buffer]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/dstructs/circular-buffer + +[@stdlib/dstructs/compact-adjacency-matrix]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/dstructs/compact-adjacency-matrix + +[@stdlib/dstructs/doubly-linked-list]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/dstructs/doubly-linked-list + +[@stdlib/dstructs/fifo]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/dstructs/fifo + +[@stdlib/dstructs/linked-list]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/dstructs/linked-list + +[@stdlib/dstructs/named-typed-tuple]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/dstructs/named-typed-tuple + +[@stdlib/dstructs/stack]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/dstructs/stack + diff --git a/lib/node_modules/@stdlib/stats/base/README.md b/lib/node_modules/@stdlib/stats/base/README.md index e9022d7cc969..df41e4bec800 100644 --- a/lib/node_modules/@stdlib/stats/base/README.md +++ b/lib/node_modules/@stdlib/stats/base/README.md @@ -71,8 +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. -- [`dnanmax( N, x, strideX )`][@stdlib/stats/strided/dnanmax]: calculate the maximum value of a double-precision floating-point strided array, ignoring `NaN` values. -- [`dnanmaxabs( N, x, strideX )`][@stdlib/stats/strided/dnanmaxabs]: calculate the maximum absolute value of a double-precision floating-point strided array, ignoring `NaN` values. - [`dnanmean( N, x, strideX )`][@stdlib/stats/base/dnanmean]: calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values. - [`dnanmeanors( N, x, strideX )`][@stdlib/stats/base/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. @@ -132,7 +130,7 @@ The namespace contains the following statistical functions: - [`maxBy( N, x, stride, clbk[, thisArg] )`][@stdlib/stats/base/max-by]: calculate the maximum value of a strided array via a callback function. - [`max( N, x, strideX )`][@stdlib/stats/base/max]: calculate the maximum value of a strided array. - [`maxabs( N, x, strideX )`][@stdlib/stats/base/maxabs]: calculate the maximum absolute value of a strided array. -- [`maxsorted( N, x, stride )`][@stdlib/stats/base/maxsorted]: calculate the maximum value of a sorted strided array. +- [`maxsorted( N, x, strideX )`][@stdlib/stats/base/maxsorted]: calculate the maximum value of a sorted strided array. - [`mean( N, x, stride )`][@stdlib/stats/base/mean]: calculate the arithmetic mean of a strided array. - [`meankbn( N, x, stride )`][@stdlib/stats/base/meankbn]: calculate the arithmetic mean of a strided array using an improved Kahan–Babuška algorithm. - [`meankbn2( N, x, stride )`][@stdlib/stats/base/meankbn2]: calculate the arithmetic mean of a strided array using a second-order iterative Kahan–Babuška algorithm. @@ -140,11 +138,11 @@ The namespace contains the following statistical functions: - [`meanpn( N, x, stride )`][@stdlib/stats/base/meanpn]: calculate the arithmetic mean of a strided array using a two-pass error correction algorithm. - [`meanpw( N, x, stride )`][@stdlib/stats/base/meanpw]: calculate the arithmetic mean of a strided array using pairwise summation. - [`meanwd( N, x, stride )`][@stdlib/stats/base/meanwd]: calculate the arithmetic mean of a strided array using Welford's algorithm. -- [`mediansorted( N, x, stride )`][@stdlib/stats/base/mediansorted]: calculate the median value of a sorted strided array. +- [`mediansorted( N, x, strideX )`][@stdlib/stats/base/mediansorted]: calculate the median value of a sorted strided array. - [`minBy( N, x, stride, clbk[, thisArg] )`][@stdlib/stats/base/min-by]: calculate the minimum value of a strided array via a callback function. - [`min( N, x, strideX )`][@stdlib/stats/base/min]: calculate the minimum value of a strided array. - [`minabs( N, x, strideX )`][@stdlib/stats/base/minabs]: calculate the minimum absolute value of a strided array. -- [`minsorted( N, x, stride )`][@stdlib/stats/base/minsorted]: calculate the minimum value of a sorted strided array. +- [`minsorted( N, x, strideX )`][@stdlib/stats/base/minsorted]: calculate the minimum value of a sorted strided array. - [`mskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/mskmax]: calculate the maximum value of a strided array according to a mask. - [`mskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/mskmin]: calculate the minimum value of a strided array according to a mask. - [`mskrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/mskrange]: calculate the range of a strided array according to a mask. @@ -333,10 +331,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/dnanmax]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dnanmax - -[@stdlib/stats/strided/dnanmaxabs]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dnanmaxabs - [@stdlib/stats/base/dnanmean]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dnanmean [@stdlib/stats/base/dnanmeanors]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dnanmeanors diff --git a/lib/node_modules/@stdlib/utils/README.md b/lib/node_modules/@stdlib/utils/README.md index 0f59ddc58f0b..30b0d5733b0e 100644 --- a/lib/node_modules/@stdlib/utils/README.md +++ b/lib/node_modules/@stdlib/utils/README.md @@ -51,24 +51,6 @@ The namespace has the following sub-namespaces: -### Data Structures - - - -
- -- [`CircularBuffer( buffer )`][@stdlib/utils/circular-buffer]: circular buffer constructor. -- [`CompactAdjacencyMatrix( N )`][@stdlib/utils/compact-adjacency-matrix]: compact adjacency matrix constructor. -- [`DoublyLinkedList()`][@stdlib/utils/doubly-linked-list]: doubly linked list constructor. -- [`FIFO()`][@stdlib/utils/fifo]: first-in-first-out (FIFO) queue. -- [`LinkedList()`][@stdlib/utils/linked-list]: singly linked list. -- [`namedtypedtuple( fields[, options] )`][@stdlib/utils/named-typed-tuple]: create a factory for generating named typed tuples. -- [`Stack()`][@stdlib/utils/stack]: stack data structure. - -
- - - ### Collections @@ -805,20 +787,6 @@ console.log( objectKeys( utils ) ); [@stdlib/utils/while-each]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/while-each -[@stdlib/utils/circular-buffer]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/circular-buffer - -[@stdlib/utils/compact-adjacency-matrix]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/compact-adjacency-matrix - -[@stdlib/utils/doubly-linked-list]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/doubly-linked-list - -[@stdlib/utils/fifo]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/fifo - -[@stdlib/utils/linked-list]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/linked-list - -[@stdlib/utils/named-typed-tuple]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/named-typed-tuple - -[@stdlib/utils/stack]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/stack - [@stdlib/utils/async]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/async