diff --git a/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/README.md b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/README.md
new file mode 100644
index 000000000000..6e77e76187a8
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/README.md
@@ -0,0 +1,127 @@
+
+
+# structFactory
+
+> Create a new [`struct`][@stdlib/dstructs/struct] constructor tailored to a specified floating-point data type.
+
+
+
+
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var structFactory = require( '@stdlib/blas/ext/base/nannsum/results/struct-factory' );
+```
+
+#### structFactory( dtype )
+
+Returns a new [`struct`][@stdlib/dstructs/struct] constructor tailored to a specified floating-point data type.
+
+```javascript
+var Struct = structFactory( 'float64' );
+// returns
+
+var s = new Struct();
+// returns
+```
+
+The function supports the following parameters:
+
+- **dtype**: floating-point data type for storing floating-point results. Must be either `'float64'` or `'float32'`.
+
+
+
+
+
+
+
+
+
+## Notes
+
+- A [`struct`][@stdlib/dstructs/struct] provides a fixed-width composite data structure for storing NaN-aware summation results and provides an ABI-stable data layout for JavaScript-C interoperation.
+
+
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var structFactory = require( '@stdlib/blas/ext/base/nannsum/results/struct-factory' );
+var BigInt = require( '@stdlib/bigint/ctor' );
+
+var Struct = structFactory( 'float64' );
+var results = new Struct({
+ 'sum': 11.7586,
+ 'count': BigInt( 5 )
+});
+
+var str = results.toString({
+ 'format': 'linear'
+});
+console.log( str );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[@stdlib/dstructs/struct]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/dstructs/struct
+
+
+
+
diff --git a/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/benchmark/benchmark.js b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/benchmark/benchmark.js
new file mode 100644
index 000000000000..f06fde75adee
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/benchmark/benchmark.js
@@ -0,0 +1,54 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var bench = require( '@stdlib/bench' );
+var isFunction = require( '@stdlib/assert/is-function' );
+var pkg = require( './../package.json' ).name;
+var factory = require( './../lib' );
+
+
+// MAIN //
+
+bench( pkg, function benchmark( b ) {
+ var values;
+ var v;
+ var i;
+
+ values = [
+ 'float64',
+ 'float32'
+ ];
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ v = factory( values[ i%values.length ] );
+ if ( typeof v !== 'function' ) {
+ b.fail( 'should return a function' );
+ }
+ }
+ b.toc();
+ if ( !isFunction( v ) ) {
+ b.fail( 'should return a function' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/docs/repl.txt b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/docs/repl.txt
new file mode 100644
index 000000000000..e6a0c632d678
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/docs/repl.txt
@@ -0,0 +1,25 @@
+
+{{alias}}( dtype )
+ Returns a new struct constructor tailored to a specified floating-point data
+ type.
+
+ Parameters
+ ----------
+ dtype: string
+ Floating-point data type for storing floating-point results.
+
+ Returns
+ -------
+ fcn: Function
+ Struct constructor.
+
+ Examples
+ --------
+ > var S = {{alias}}( 'float64' );
+ > var r = new S();
+ > r.toString()
+
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/docs/types/index.d.ts
new file mode 100644
index 000000000000..b98507319b9a
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/docs/types/index.d.ts
@@ -0,0 +1,104 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+// TypeScript Version: 4.1
+
+/**
+* Interface describing NaN-aware summation results.
+*/
+interface Results {
+ /**
+ * Sum of non-NaN elements.
+ */
+ sum?: number;
+
+ /**
+ * Number of non-NaN elements.
+ */
+ count?: bigint;
+}
+
+/**
+* Interface describing a struct data structure.
+*/
+declare class Struct {
+ /**
+ * Struct constructor.
+ *
+ * @param arg - buffer or data object
+ * @param byteOffset - byte offset
+ * @param byteLength - maximum byte length
+ * @returns struct
+ */
+ constructor( arg?: ArrayBuffer | Results, byteOffset?: number, byteLength?: number );
+
+ /**
+ * Sum of non-NaN elements.
+ */
+ sum: number;
+
+ /**
+ * Number of non-NaN elements.
+ */
+ count: bigint;
+}
+
+/**
+* Interface defining a struct constructor which is both "newable" and "callable".
+*/
+interface StructConstructor {
+ /**
+ * Struct constructor.
+ *
+ * @param arg - buffer or data object
+ * @param byteOffset - byte offset
+ * @param byteLength - maximum byte length
+ * @returns struct
+ */
+ new( arg?: ArrayBuffer | Results, byteOffset?: number, byteLength?: number ): Struct;
+
+ /**
+ * Struct constructor.
+ *
+ * @param arg - buffer or data object
+ * @param byteOffset - byte offset
+ * @param byteLength - maximum byte length
+ * @returns struct
+ */
+ ( arg?: ArrayBuffer | Results, byteOffset?: number, byteLength?: number ): Struct;
+}
+
+/**
+* Returns a new struct constructor tailored to a specified floating-point data type.
+*
+* @param dtype - floating-point data type for storing floating-point results
+* @returns struct constructor
+*
+* @example
+* var Struct = structFactory( 'float64' );
+* // returns
+*
+* var s = new Struct();
+* // returns
+*/
+declare function structFactory( dtype: 'float64' | 'float32' ): StructConstructor;
+
+
+// EXPORTS //
+
+export = structFactory;
diff --git a/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/docs/types/test.ts b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/docs/types/test.ts
new file mode 100644
index 000000000000..6f4e27ee6e2a
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/docs/types/test.ts
@@ -0,0 +1,54 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+import structFactory = require( './index' );
+
+
+// TESTS //
+
+// The function returns a function...
+{
+ structFactory( 'float64' ); // $ExpectType StructConstructor
+ structFactory( 'float32' ); // $ExpectType StructConstructor
+}
+
+// The compiler throws an error if not provided a supported data type...
+{
+ structFactory( 10 ); // $ExpectError
+ structFactory( true ); // $ExpectError
+ structFactory( false ); // $ExpectError
+ structFactory( null ); // $ExpectError
+ structFactory( undefined ); // $ExpectError
+ structFactory( [] ); // $ExpectError
+ structFactory( {} ); // $ExpectError
+ structFactory( ( x: number ): number => x ); // $ExpectError
+}
+
+// The function returns a function which returns a struct object...
+{
+ const Struct = structFactory( 'float64' );
+
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
+ const s1 = new Struct( new ArrayBuffer( 80 ) ); // $ExpectType Struct
+
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
+ const s2 = new Struct( new ArrayBuffer( 80 ), 8 ); // $ExpectType Struct
+
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
+ const s3 = new Struct( new ArrayBuffer( 80 ), 8, 16 ); // $ExpectType Struct
+}
diff --git a/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/examples/index.js b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/examples/index.js
new file mode 100644
index 000000000000..f535cfbf93b1
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/examples/index.js
@@ -0,0 +1,45 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+var BigInt = require( '@stdlib/bigint/ctor' );
+var f32 = require( '@stdlib/number/float64/base/to-float32' );
+var structFactory = require( './../lib' );
+
+var Struct = structFactory( 'float64' );
+var results = new Struct({
+ 'sum': 11.7586,
+ 'count': BigInt( 5 )
+});
+
+var str = results.toString({
+ 'format': 'linear'
+});
+console.log( str );
+
+Struct = structFactory( 'float32' );
+results = new Struct({
+ 'sum': f32( 11.7586 ),
+ 'count': BigInt( 5 )
+});
+
+str = results.toString({
+ 'format': 'linear'
+});
+console.log( str );
diff --git a/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/lib/index.js b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/lib/index.js
new file mode 100644
index 000000000000..8b7b11ce9c89
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/lib/index.js
@@ -0,0 +1,43 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+/**
+* Create a new struct constructor tailored to a specified floating-point data type.
+*
+* @module @stdlib/blas/ext/base/nannsum/results/struct-factory
+*
+* @example
+* var structFactory = require( '@stdlib/blas/ext/base/nannsum/results/struct-factory' );
+*
+* var Struct = structFactory( 'float64' );
+* // returns
+*
+* var s = new Struct();
+* // returns
+*/
+
+// MODULES //
+
+var main = require( './main.js' );
+
+
+// EXPORTS //
+
+module.exports = main;
diff --git a/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/lib/main.js b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/lib/main.js
new file mode 100644
index 000000000000..66a9280edbf4
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/lib/main.js
@@ -0,0 +1,62 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var struct = require( '@stdlib/dstructs/struct' );
+
+
+// MAIN //
+
+/**
+* Returns a new struct constructor tailored to a specified floating-point data type.
+*
+* @param {string} dtype - floating-point data type
+* @returns {Function} struct constructor
+*
+* @example
+* var Struct = factory( 'float64' );
+* // returns
+*
+* var s = new Struct();
+* // returns
+*/
+function factory( dtype ) {
+ var schema = [
+ {
+ 'name': 'sum',
+ 'description': 'sum of non-NaN elements',
+ 'type': dtype,
+ 'castingMode': 'mostly-safe'
+ },
+ {
+ 'name': 'count',
+ 'description': 'number of non-NaN elements',
+ 'type': 'int64',
+ 'castingMode': 'none'
+ }
+ ];
+ return struct( schema );
+}
+
+
+// EXPORTS //
+
+module.exports = factory;
diff --git a/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/package.json b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/package.json
new file mode 100644
index 000000000000..1ab6d8ad052e
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/package.json
@@ -0,0 +1,68 @@
+{
+ "name": "@stdlib/blas/ext/base/nannsum/results/struct-factory",
+ "version": "0.0.0",
+ "description": "Create a new struct constructor tailored to a specified floating-point data type.",
+ "license": "Apache-2.0",
+ "author": {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ },
+ "contributors": [
+ {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ }
+ ],
+ "main": "./lib",
+ "directories": {
+ "benchmark": "./benchmark",
+ "doc": "./docs",
+ "example": "./examples",
+ "lib": "./lib",
+ "test": "./test"
+ },
+ "types": "./docs/types",
+ "scripts": {},
+ "homepage": "https://github.com/stdlib-js/stdlib",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/stdlib-js/stdlib.git"
+ },
+ "bugs": {
+ "url": "https://github.com/stdlib-js/stdlib/issues"
+ },
+ "dependencies": {},
+ "devDependencies": {},
+ "engines": {
+ "node": ">=0.10.0",
+ "npm": ">2.7.0"
+ },
+ "os": [
+ "aix",
+ "darwin",
+ "freebsd",
+ "linux",
+ "macos",
+ "openbsd",
+ "sunos",
+ "win32",
+ "windows"
+ ],
+ "keywords": [
+ "stdlib",
+ "blas",
+ "linear",
+ "algebra",
+ "linalg",
+ "nannsum",
+ "nan",
+ "sum",
+ "utilities",
+ "utility",
+ "utils",
+ "util",
+ "struct",
+ "results"
+ ],
+ "__stdlib__": {}
+}
diff --git a/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/test/test.js b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/test/test.js
new file mode 100644
index 000000000000..f2124b53ac21
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/nannsum/results/struct-factory/test/test.js
@@ -0,0 +1,112 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var BigInt = require( '@stdlib/bigint/ctor' );
+var Number = require( '@stdlib/number/ctor' );
+var f32 = require( '@stdlib/number/float64/base/to-float32' );
+var structFactory = require( './../lib' );
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof structFactory, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function throws an error if provided a first argument which is not a supported data type', function test( t ) {
+ var values;
+ var i;
+
+ values = [
+ '5',
+ 5,
+ NaN,
+ true,
+ false,
+ null,
+ void 0,
+ [],
+ {},
+ function noop() {}
+ ];
+ for ( i = 0; i < values.length; i++ ) {
+ t.throws( badValue( values[ i ] ), TypeError, 'throws an error when provided ' + values[ i ] );
+ }
+ t.end();
+
+ function badValue( value ) {
+ return function badValue() {
+ structFactory( value );
+ };
+ }
+});
+
+tape( 'the function returns a constructor for creating a fixed-width results object (dtype=float64)', function test( t ) {
+ var expected;
+ var actual;
+ var Struct;
+
+ Struct = structFactory( 'float64' );
+ t.strictEqual( typeof Struct, 'function', 'returns expected value' );
+
+ actual = new Struct({
+ 'sum': 11.7586,
+ 'count': BigInt( 5 )
+ });
+
+ expected = {
+ 'sum': 11.7586,
+ 'count': 5
+ };
+
+ t.strictEqual( actual instanceof Struct, true, 'returns expected value' );
+ t.strictEqual( actual.sum, expected.sum, 'returns expected value' );
+ t.strictEqual( Number( actual.count ), expected.count, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns a constructor for creating a fixed-width results object (dtype=float32)', function test( t ) {
+ var expected;
+ var actual;
+ var Struct;
+
+ Struct = structFactory( 'float32' );
+ t.strictEqual( typeof Struct, 'function', 'returns expected value' );
+
+ actual = new Struct({
+ 'sum': f32( 11.7586 ),
+ 'count': BigInt( 5 )
+ });
+
+ expected = {
+ 'sum': f32( 11.7586 ),
+ 'count': 5
+ };
+
+ t.strictEqual( actual instanceof Struct, true, 'returns expected value' );
+ t.strictEqual( actual.sum, expected.sum, 'returns expected value' );
+ t.strictEqual( Number( actual.count ), expected.count, 'returns expected value' );
+ t.end();
+});