diff --git a/lib/node_modules/@stdlib/number/int64/base/get-high-word/README.md b/lib/node_modules/@stdlib/number/int64/base/get-high-word/README.md
new file mode 100644
index 000000000000..0300bc0c2947
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/int64/base/get-high-word/README.md
@@ -0,0 +1,118 @@
+
+
+# High Word
+
+> Return a 32-bit unsigned integer corresponding to the high 32-bit word of a [64-bit signed integer][@stdlib/number/int64/ctor].
+
+
+
+## Usage
+
+```javascript
+var getHighWord = require( '@stdlib/number/int64/base/get-high-word' );
+```
+
+#### getHighWord( x )
+
+Returns a 32-bit unsigned integer corresponding to the high 32-bit word of a [64-bit signed integer][@stdlib/number/int64/ctor].
+
+```javascript
+var Int64 = require( '@stdlib/number/int64/ctor' );
+
+var x = new Int64( 4294967296 );
+var w = getHighWord( x );
+// returns 1
+```
+
+For negative values, the function returns the high word of the two's complement representation.
+
+```javascript
+var Int64 = require( '@stdlib/number/int64/ctor' );
+
+var x = new Int64( -1 );
+var w = getHighWord( x );
+// returns 4294967295
+```
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var Int64 = require( '@stdlib/number/int64/ctor' );
+var getHighWord = require( '@stdlib/number/int64/base/get-high-word' );
+
+var x = new Int64( 4294967296 );
+console.log( getHighWord( x ) );
+// => 1
+
+x = new Int64( 0xffffffff );
+console.log( getHighWord( x ) );
+// => 0
+
+x = new Int64( 0x123400005678 );
+console.log( getHighWord( x ) );
+// => 4660
+
+x = new Int64( -1 );
+console.log( getHighWord( x ) );
+// => 4294967295
+
+x = new Int64( -1000000000000 );
+console.log( getHighWord( x ) );
+// => 4294967063
+
+x = Int64.of( 1234, 5678 );
+console.log( getHighWord( x ) );
+// => 1234
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[@stdlib/number/int64/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/int64/ctor
+
+
+
+
+
+
+
+
diff --git a/lib/node_modules/@stdlib/number/int64/base/get-high-word/benchmark/benchmark.js b/lib/node_modules/@stdlib/number/int64/base/get-high-word/benchmark/benchmark.js
new file mode 100644
index 000000000000..dc49343ad3ce
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/int64/base/get-high-word/benchmark/benchmark.js
@@ -0,0 +1,67 @@
+/**
+* @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 isnan = require( '@stdlib/assert/is-nan' ).isPrimitive;
+var bench = require( '@stdlib/bench' );
+var MAX_SAFE_INTEGER = require( '@stdlib/constants/float64/max-safe-integer' );
+var MIN_SAFE_INTEGER = require( '@stdlib/constants/float64/min-safe-integer' );
+var Int64 = require( '@stdlib/number/int64/ctor' );
+var discreteUniform = require( '@stdlib/random/base/discrete-uniform' );
+var pkg = require( './../package.json' ).name;
+var getHighWord = require( './../lib' );
+
+
+// VARIABLES //
+
+var rand = discreteUniform.factory( MIN_SAFE_INTEGER, MAX_SAFE_INTEGER );
+
+
+// MAIN //
+
+bench( pkg, function benchmark( b ) {
+ var values;
+ var N;
+ var x;
+ var i;
+ var w;
+
+ N = 100;
+ values = [];
+ for ( i = 0; i < N; i++ ) {
+ values.push( new Int64( rand() ) );
+ }
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ x = values[ i % N ];
+ w = getHighWord( x );
+ if ( isnan( w ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnan( w ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/number/int64/base/get-high-word/docs/repl.txt b/lib/node_modules/@stdlib/number/int64/base/get-high-word/docs/repl.txt
new file mode 100644
index 000000000000..132f3575eced
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/int64/base/get-high-word/docs/repl.txt
@@ -0,0 +1,29 @@
+
+{{alias}}( x )
+ Returns a 32-bit unsigned integer corresponding to the high 32-bit word of a
+ 64-bit signed integer.
+
+ Parameters
+ ----------
+ x: Int64
+ Input value.
+
+ Returns
+ -------
+ out: integer
+ Higher order word (32-bit unsigned integer).
+
+ Examples
+ --------
+ > var x = new {{alias:@stdlib/number/int64/ctor}}( 4294967296 )
+ [ 4294967296n ]
+ > var w = {{alias}}( x )
+ 1
+ > x = new {{alias:@stdlib/number/int64/ctor}}( -1 )
+ [ -1n ]
+ > w = {{alias}}( x )
+ 4294967295
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/number/int64/base/get-high-word/docs/types/index.d.ts b/lib/node_modules/@stdlib/number/int64/base/get-high-word/docs/types/index.d.ts
new file mode 100644
index 000000000000..c5c9188ed1a9
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/int64/base/get-high-word/docs/types/index.d.ts
@@ -0,0 +1,50 @@
+/*
+* @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
+
+///
+
+import { Int64 } from '@stdlib/types/number';
+
+/**
+* Returns a 32-bit unsigned integer corresponding to the high 32-bit word of a 64-bit signed integer.
+*
+* @param x - input value
+* @returns higher order word (32-bit unsigned integer)
+*
+* @example
+* var Int64 = require( '@stdlib/number/int64/ctor' );
+*
+* var x = new Int64( 4294967296 );
+* var w = getHighWord( x );
+* // returns 1
+*
+* @example
+* var Int64 = require( '@stdlib/number/int64/ctor' );
+*
+* var x = new Int64( -1 );
+* var w = getHighWord( x );
+* // returns 4294967295
+*/
+declare function getHighWord( x: Int64 ): number;
+
+
+// EXPORTS //
+
+export = getHighWord;
diff --git a/lib/node_modules/@stdlib/number/int64/base/get-high-word/docs/types/test.ts b/lib/node_modules/@stdlib/number/int64/base/get-high-word/docs/types/test.ts
new file mode 100644
index 000000000000..7be331f20742
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/int64/base/get-high-word/docs/types/test.ts
@@ -0,0 +1,47 @@
+/*
+* @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 Int64 = require( '@stdlib/number/int64/ctor' );
+import getHighWord = require( './index' );
+
+
+// TESTS //
+
+// The function returns a number...
+{
+ const x = new Int64( 5 );
+ getHighWord( x ); // $ExpectType number
+}
+
+// The compiler throws an error if the function is provided an argument that is not a 64-bit signed integer...
+{
+ getHighWord( 5 ); // $ExpectError
+ getHighWord( '5' ); // $ExpectError
+ getHighWord( true ); // $ExpectError
+ getHighWord( false ); // $ExpectError
+ getHighWord( [] ); // $ExpectError
+ getHighWord( {} ); // $ExpectError
+ getHighWord( ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided an unsupported number of arguments...
+{
+ const x = new Int64( 5 );
+ getHighWord(); // $ExpectError
+ getHighWord( x, x ); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/number/int64/base/get-high-word/examples/index.js b/lib/node_modules/@stdlib/number/int64/base/get-high-word/examples/index.js
new file mode 100644
index 000000000000..fd9a7aa3467a
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/int64/base/get-high-word/examples/index.js
@@ -0,0 +1,46 @@
+/**
+* @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 Int64 = require( '@stdlib/number/int64/ctor' );
+var getHighWord = require( './../lib' );
+
+var x = new Int64( 4294967296 );
+console.log( getHighWord( x ) );
+// => 1
+
+x = new Int64( 0xffffffff );
+console.log( getHighWord( x ) );
+// => 0
+
+x = new Int64( 0x123400005678 );
+console.log( getHighWord( x ) );
+// => 4660
+
+x = new Int64( -1 );
+console.log( getHighWord( x ) );
+// => 4294967295
+
+x = new Int64( -1000000000000 );
+console.log( getHighWord( x ) );
+// => 4294967063
+
+x = Int64.of( 1234, 5678 );
+console.log( getHighWord( x ) );
+// => 1234
diff --git a/lib/node_modules/@stdlib/number/int64/base/get-high-word/lib/index.js b/lib/node_modules/@stdlib/number/int64/base/get-high-word/lib/index.js
new file mode 100644
index 000000000000..00bb720d62b5
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/int64/base/get-high-word/lib/index.js
@@ -0,0 +1,50 @@
+/**
+* @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';
+
+/**
+* Return a 32-bit unsigned integer corresponding to the high 32-bit word of a 64-bit signed integer.
+*
+* @module @stdlib/number/int64/base/get-high-word
+*
+* @example
+* var Int64 = require( '@stdlib/number/int64/ctor' );
+* var getHighWord = require( '@stdlib/number/int64/base/get-high-word' );
+*
+* var x = new Int64( 4294967296 );
+* var w = getHighWord( x );
+* // returns 1
+*
+* @example
+* var Int64 = require( '@stdlib/number/int64/ctor' );
+* var getHighWord = require( '@stdlib/number/int64/base/get-high-word' );
+*
+* var x = new Int64( -1 );
+* var w = getHighWord( x );
+* // returns 4294967295
+*/
+
+// MODULES //
+
+var main = require( './main.js' );
+
+
+// EXPORTS //
+
+module.exports = main;
diff --git a/lib/node_modules/@stdlib/number/int64/base/get-high-word/lib/main.js b/lib/node_modules/@stdlib/number/int64/base/get-high-word/lib/main.js
new file mode 100644
index 000000000000..f9fccc638c7b
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/int64/base/get-high-word/lib/main.js
@@ -0,0 +1,50 @@
+/**
+* @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';
+
+// MAIN //
+
+/**
+* Returns a 32-bit unsigned integer corresponding to the high 32-bit word of a 64-bit signed integer.
+*
+* @param {Int64} x - input value
+* @returns {uinteger32} higher order word
+*
+* @example
+* var Int64 = require( '@stdlib/number/int64/ctor' );
+*
+* var x = new Int64( 4294967296 );
+* var w = getHighWord( x );
+* // returns 1
+*
+* @example
+* var Int64 = require( '@stdlib/number/int64/ctor' );
+*
+* var x = new Int64( -1 );
+* var w = getHighWord( x );
+* // returns 4294967295
+*/
+function getHighWord( x ) {
+ return x.hi;
+}
+
+
+// EXPORTS //
+
+module.exports = getHighWord;
diff --git a/lib/node_modules/@stdlib/number/int64/base/get-high-word/package.json b/lib/node_modules/@stdlib/number/int64/base/get-high-word/package.json
new file mode 100644
index 000000000000..3642214a95c1
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/int64/base/get-high-word/package.json
@@ -0,0 +1,69 @@
+{
+ "name": "@stdlib/number/int64/base/get-high-word",
+ "version": "0.0.0",
+ "description": "Return a 32-bit unsigned integer corresponding to the high 32-bit word of a 64-bit signed integer.",
+ "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",
+ "stdtypes",
+ "base",
+ "utilities",
+ "utility",
+ "utils",
+ "util",
+ "types",
+ "type",
+ "int64",
+ "signed",
+ "64-bit",
+ "integer",
+ "int",
+ "high",
+ "word"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/number/int64/base/get-high-word/test/test.js b/lib/node_modules/@stdlib/number/int64/base/get-high-word/test/test.js
new file mode 100644
index 000000000000..d96f9d6236b3
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/int64/base/get-high-word/test/test.js
@@ -0,0 +1,137 @@
+/**
+* @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 isInteger = require( '@stdlib/assert/is-integer' ).isPrimitive;
+var MIN_SAFE_INTEGER = require( '@stdlib/constants/float64/min-safe-integer' );
+var UINT32_MAX = require( '@stdlib/constants/uint32/max' );
+var Int64 = require( '@stdlib/number/int64/ctor' );
+var getHighWord = require( './../lib' );
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof getHighWord, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function returns an integer', function test( t ) {
+ var x;
+ var w;
+
+ x = new Int64( 4294967296 );
+ w = getHighWord( x );
+
+ t.ok( isInteger( w ), 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'the function returns the high 32-bit word of a 64-bit signed integer', function test( t ) {
+ var values;
+ var x;
+ var v;
+ var w;
+ var i;
+
+ values = [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 10,
+ 99,
+ 100,
+ 999,
+ 1000,
+ 999999,
+ 1000000,
+ 999999999,
+ 1000000000,
+ UINT32_MAX
+ ];
+
+ for ( i = 0; i < values.length; i++ ) {
+ v = values[ i ];
+ x = Int64.of( v, 0 );
+ w = getHighWord( x );
+ t.strictEqual( w, v, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function returns the high 32-bit word of a negative 64-bit signed integer', function test( t ) {
+ var expected;
+ var values;
+ var x;
+ var w;
+ var i;
+
+ values = [
+ -0,
+ -1,
+ -2,
+ -3,
+ -4,
+ -5,
+ -10,
+ -99,
+ -100,
+ -999,
+ -1000,
+ -999999,
+ -1000000,
+ -999999999,
+ -1000000000,
+ MIN_SAFE_INTEGER
+ ];
+
+ expected = [
+ 0,
+ 4294967295,
+ 4294967295,
+ 4294967295,
+ 4294967295,
+ 4294967295,
+ 4294967295,
+ 4294967295,
+ 4294967295,
+ 4294967295,
+ 4294967295,
+ 4294967295,
+ 4294967295,
+ 4294967295,
+ 4294967295,
+ 4292870144
+ ];
+
+ for ( i = 0; i < values.length; i++ ) {
+ x = new Int64( values[ i ] );
+ w = getHighWord( x );
+ t.strictEqual( w, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});