From 252a581ebda497808861994224221729c538f55e Mon Sep 17 00:00:00 2001 From: Jaysukh-409 Date: Sun, 2 Jun 2024 17:21:41 +0530 Subject: [PATCH 1/4] feat: add strided/base/reinterpret-boolean --- .../base/reinterpret-boolean/README.md | 157 ++++++++++++++++++ .../benchmark/benchmark.js | 56 +++++++ .../base/reinterpret-boolean/docs/repl.txt | 28 ++++ .../reinterpret-boolean/examples/index.js | 44 +++++ .../base/reinterpret-boolean/lib/index.js | 46 +++++ .../base/reinterpret-boolean/lib/main.js | 53 ++++++ .../base/reinterpret-boolean/package.json | 63 +++++++ .../base/reinterpret-boolean/test/test.js | 101 +++++++++++ 8 files changed, 548 insertions(+) create mode 100644 lib/node_modules/@stdlib/strided/base/reinterpret-boolean/README.md create mode 100644 lib/node_modules/@stdlib/strided/base/reinterpret-boolean/benchmark/benchmark.js create mode 100644 lib/node_modules/@stdlib/strided/base/reinterpret-boolean/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/strided/base/reinterpret-boolean/examples/index.js create mode 100644 lib/node_modules/@stdlib/strided/base/reinterpret-boolean/lib/index.js create mode 100644 lib/node_modules/@stdlib/strided/base/reinterpret-boolean/lib/main.js create mode 100644 lib/node_modules/@stdlib/strided/base/reinterpret-boolean/package.json create mode 100644 lib/node_modules/@stdlib/strided/base/reinterpret-boolean/test/test.js diff --git a/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/README.md b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/README.md new file mode 100644 index 000000000000..cb48900ec6d6 --- /dev/null +++ b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/README.md @@ -0,0 +1,157 @@ + + +# reinterpret + +> Reinterpret a [`BooleanArray`][@stdlib/array/bool] as a [`Uint8Array`][@stdlib/array/uint8]. + + + +
+ +
+ + + + + +
+ +## Usage + +```javascript +var reinterpret = require( '@stdlib/strided/base/reinterpret-boolean' ); +``` + +#### reinterpret( x, offset ) + +Returns a [`Uint8Array`][@stdlib/array/uint8] view of a [`BooleanArray`][@stdlib/array/bool]. + +```javascript +var BooleanArray = require( '@stdlib/array/bool' ); + +var x = new BooleanArray( 10 ); + +var view = reinterpret( x, 0 ); +// returns + +var bool = ( view.buffer === x.buffer ); +// returns true + +var len = view.length; +// returns 10 +``` + +The `offset` argument specifies the starting index of the returned [`Uint8Array`][@stdlib/array/uint8] view relative to the [`BooleanArray`][@stdlib/array/bool]. + +```javascript +var BooleanArray = require( '@stdlib/array/bool' ); + +var x = new BooleanArray( [ 1, 0, 0, 1, 1, 0 ] ); + +var view = reinterpret( x, 2 ); +// returns + +var len = view.length; +// returns 4 + +var re = view[ 0 ]; +// returns 0 + +var im = view[ 1 ]; +// returns 1 +``` + +
+ + + + + +
+ +
+ + + + + +
+ +## Examples + + + +```javascript +var BooleanArray = require( '@stdlib/array/bool' ); +var reinterpret = require( '@stdlib/strided/base/reinterpret-boolean' ); + +// Define a boolean array: +var x = new BooleanArray( [ 1, 0, 0, 1, 1, 0 ] ); +// returns + +// Reinterpret as a `uint8` array: +var view = reinterpret( x, 0 ); +// returns + +// Set view elements: +view[ 0 ] = 0; +view[ 1 ] = 1; + +// Get the first element of the boolean array: +var v = x.get( 0 ); +// returns false + +// Get the second element of the boolean array: +v = x.get( 1 ); +// returns true +``` + +
+ + + + + +
+ +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/benchmark/benchmark.js b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/benchmark/benchmark.js new file mode 100644 index 000000000000..99ce1560dc7a --- /dev/null +++ b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/benchmark/benchmark.js @@ -0,0 +1,56 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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 BooleanArray = require( '@stdlib/array/bool' ); +var isUint8Array = require( '@stdlib/assert/is-uint8array' ); +var pkg = require( './../package.json' ).name; +var reinterpret = require( './../lib' ); + + +// MAIN // + +bench( pkg, function benchmark( b ) { + var values; + var out; + var i; + + values = [ + new BooleanArray( 10 ), + new BooleanArray( 5 ), + new BooleanArray( 20 ) + ]; + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + out = reinterpret( values[ i%values.length ], 1 ); + if ( typeof out !== 'object' ) { + b.fail( 'should return an object' ); + } + } + b.toc(); + if ( !isUint8Array( out ) ) { + b.fail( 'should return a Uint8Array' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/docs/repl.txt b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/docs/repl.txt new file mode 100644 index 000000000000..3c56de2278b0 --- /dev/null +++ b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/docs/repl.txt @@ -0,0 +1,28 @@ + +{{alias}}( x, offset ) + Returns a Uint8Array view of a BooleanArray. + + Parameters + ---------- + x: BooleanArray + Input array. + + offset: integer + Starting index of the view relative to the BooleanArray. + + Returns + ------- + out: Uint8Array + Uint8Array view. + + Examples + -------- + > var x = new {{alias:@stdlib/array/bool}}( 10 ); + > var out = {{alias}}( x, 0 ) + + > var bool = ( out.buffer === x.buffer ) + true + + See Also + -------- + diff --git a/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/examples/index.js b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/examples/index.js new file mode 100644 index 000000000000..69d931d8a819 --- /dev/null +++ b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/examples/index.js @@ -0,0 +1,44 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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 BooleanArray = require( '@stdlib/array/bool' ); +var reinterpret = require( './../lib' ); + +// Define a boolean array: +var x = new BooleanArray( [ 1, 0, 0, 1, 1, 0 ] ); +// returns + +// Reinterpret as a `uint8` array: +var view = reinterpret( x, 0 ); +// returns + +// Set view elements: +view[ 0 ] = 0; +view[ 1 ] = 1; + +// Get the first element of the boolean array: +var v = x.get( 0 ); +// returns false + +// Get the second element of the boolean array: +v = x.get( 1 ); +// returns true + +console.log( v ); diff --git a/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/lib/index.js b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/lib/index.js new file mode 100644 index 000000000000..8efbf107d99a --- /dev/null +++ b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/lib/index.js @@ -0,0 +1,46 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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'; + +/** +* Reinterpret a `BooleanArray` as a `Uint8Array`. +* +* @module @stdlib/strided/base/reinterpret-boolean +* +* @example +* var BooleanArray = require( '@stdlib/array/bool' ); +* var reinterpret = require( '@stdlib/strided/base/reinterpret-boolean' ); +* +* var x = new BooleanArray( 10 ); +* +* var out = reinterpret( x, 0 ); +* // returns +* +* var bool = ( out.buffer === x.buffer ); +* // returns true +*/ + +// MODULES // + +var main = require( './main.js' ); + + +// EXPORTS // + +module.exports = main; diff --git a/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/lib/main.js b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/lib/main.js new file mode 100644 index 000000000000..0bb18ec52ca9 --- /dev/null +++ b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/lib/main.js @@ -0,0 +1,53 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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 Uint8Array = require( '@stdlib/array/uint8' ); + + +// MAIN // + +/** +* Reinterprets a `BooleanArray` as a `Uint8Array`. +* +* @param {BooleanArray} x - input array +* @param {NonNegativeInteger} offset - starting index +* @returns {Uint8Array} `Uint8Array` view +* +* @example +* var BooleanArray = require( '@stdlib/array/bool' ); +* +* var x = new BooleanArray( 10 ); +* +* var out = reinterpret( x, 0 ); +* // returns +* +* var bool = ( out.buffer === x.buffer ); +* // returns true +*/ +function reinterpret( x, offset ) { + return new Uint8Array( x.buffer, x.byteOffset+(x.BYTES_PER_ELEMENT*offset), x.length-offset ); // eslint-disable-line max-len +} + + +// EXPORTS // + +module.exports = reinterpret; diff --git a/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/package.json b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/package.json new file mode 100644 index 000000000000..9bc90bb0f1dc --- /dev/null +++ b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/package.json @@ -0,0 +1,63 @@ +{ + "name": "@stdlib/strided/base/reinterpret-boolean", + "version": "0.0.0", + "description": "Reinterpret a BooleanArray as a Uint8Array.", + "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", + "base", + "strided", + "array", + "boolean", + "uint8", + "reinterpret", + "cast", + "view" + ], + "__stdlib__": {} +} diff --git a/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/test/test.js b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/test/test.js new file mode 100644 index 000000000000..15567f303731 --- /dev/null +++ b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/test/test.js @@ -0,0 +1,101 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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 BooleanArray = require( '@stdlib/array/bool' ); +var isUint8Array = require( '@stdlib/assert/is-uint8array' ); +var ArrayBuffer = require( '@stdlib/array/buffer' ); +var reinterpret = require( './../lib' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof reinterpret, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function reinterprets a boolean array', function test( t ) { + var values; + var v; + var i; + + values = [ + new BooleanArray( 10 ), + new BooleanArray( 5 ), + new BooleanArray( 20 ) + ]; + + for ( i = 0; i < values.length; i++ ) { + v = reinterpret( values[ i ], 0 ); + t.strictEqual( isUint8Array( v ), true, 'returns a Uint8Array' ); + t.strictEqual( v.buffer, values[ i ].buffer, 'returns a view' ); + t.strictEqual( v.length, values[ i ].length, 'has expected length' ); + t.strictEqual( v.byteOffset, 0, 'has expected byte offset' ); + } + t.end(); +}); + +tape( 'the function reinterprets a boolean array (byte offset)', function test( t ) { + var values; + var buf; + var v; + var i; + + buf = new ArrayBuffer( 1000 ); + values = [ + new BooleanArray( buf, 160, 10 ), + new BooleanArray( buf, 16, 5 ), + new BooleanArray( buf, 56, 20 ) + ]; + + for ( i = 0; i < values.length; i++ ) { + v = reinterpret( values[ i ], 0 ); + t.strictEqual( isUint8Array( v ), true, 'returns a Uint8Array' ); + t.strictEqual( v.buffer, buf, 'returns a view' ); + t.strictEqual( v.length, values[ i ].length, 'has expected length' ); + t.strictEqual( v.byteOffset, values[ i ].byteOffset, 'has expected byte offset' ); + } + t.end(); +}); + +tape( 'the function reinterprets a boolean array (index offset)', function test( t ) { + var values; + var v; + var i; + + values = [ + new BooleanArray( 10 ), + new BooleanArray( 5 ), + new BooleanArray( 20 ) + ]; + + for ( i = 0; i < values.length; i++ ) { + v = reinterpret( values[ i ], 2 ); + t.strictEqual( isUint8Array( v ), true, 'returns a Uint8Array' ); + t.strictEqual( v.buffer, values[ i ].buffer, 'returns a view' ); + t.strictEqual( v.length, (values[ i ].length-2), 'has expected length' ); + t.strictEqual( v.byteOffset, 2, 'has expected byte offset' ); + } + t.end(); +}); From 75213d9cd9953b96e7d1921116a1cd1d9d1d73e7 Mon Sep 17 00:00:00 2001 From: Athan Reines Date: Wed, 5 Jun 2024 02:12:38 -0700 Subject: [PATCH 2/4] docs: update example --- .../@stdlib/strided/base/reinterpret-boolean/examples/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/examples/index.js b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/examples/index.js index 69d931d8a819..4edb7a1fda26 100644 --- a/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/examples/index.js +++ b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/examples/index.js @@ -22,7 +22,7 @@ var BooleanArray = require( '@stdlib/array/bool' ); var reinterpret = require( './../lib' ); // Define a boolean array: -var x = new BooleanArray( [ 1, 0, 0, 1, 1, 0 ] ); +var x = new BooleanArray( [ true, false, false, true, true, false ] ); // returns // Reinterpret as a `uint8` array: From afc69702b3caf15499c6a3cb143ddfb371a80f9f Mon Sep 17 00:00:00 2001 From: Athan Reines Date: Wed, 5 Jun 2024 02:17:32 -0700 Subject: [PATCH 3/4] docs: update example values --- .../@stdlib/strided/base/reinterpret-boolean/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/README.md b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/README.md index cb48900ec6d6..aa0203747772 100644 --- a/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/README.md +++ b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/README.md @@ -64,7 +64,7 @@ The `offset` argument specifies the starting index of the returned [`Uint8Array` ```javascript var BooleanArray = require( '@stdlib/array/bool' ); -var x = new BooleanArray( [ 1, 0, 0, 1, 1, 0 ] ); +var x = new BooleanArray( [ true, false, false, true, true, false ] ); var view = reinterpret( x, 2 ); // returns @@ -72,10 +72,10 @@ var view = reinterpret( x, 2 ); var len = view.length; // returns 4 -var re = view[ 0 ]; +var v = view[ 0 ]; // returns 0 -var im = view[ 1 ]; +v = view[ 1 ]; // returns 1 ``` @@ -104,7 +104,7 @@ var BooleanArray = require( '@stdlib/array/bool' ); var reinterpret = require( '@stdlib/strided/base/reinterpret-boolean' ); // Define a boolean array: -var x = new BooleanArray( [ 1, 0, 0, 1, 1, 0 ] ); +var x = new BooleanArray( [ true, false, false, true, true, false ] ); // returns // Reinterpret as a `uint8` array: From a6eb9ad5705c42dad88ed5895990fa8e162f825a Mon Sep 17 00:00:00 2001 From: Jaysukh-409 Date: Wed, 5 Jun 2024 14:57:57 +0530 Subject: [PATCH 4/4] docs: added typescript declaration --- .../reinterpret-boolean/docs/types/index.d.ts | 48 ++++++++++++++++ .../reinterpret-boolean/docs/types/test.ts | 55 +++++++++++++++++++ 2 files changed, 103 insertions(+) create mode 100644 lib/node_modules/@stdlib/strided/base/reinterpret-boolean/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/strided/base/reinterpret-boolean/docs/types/test.ts diff --git a/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/docs/types/index.d.ts b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/docs/types/index.d.ts new file mode 100644 index 000000000000..d68821834add --- /dev/null +++ b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/docs/types/index.d.ts @@ -0,0 +1,48 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2024 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 { BooleanArray } from '@stdlib/types/array'; + +/** +* Reinterprets a `BooleanArray` as a `Uint8Array`. +* +* @param x - input array +* @param offset - starting index +* @returns `Uint8Array` view +* +* @example +* var BooleanArray = require( '@stdlib/array/bool' ); +* +* var x = new BooleanArray( 10 ); +* +* var out = reinterpret( x, 0 ); +* // returns +* +* var bool = ( out.buffer === x.buffer ); +* // returns true +*/ +declare function reinterpret( x: BooleanArray, offset: number ): Uint8Array; + + +// EXPORTS // + +export = reinterpret; diff --git a/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/docs/types/test.ts b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/docs/types/test.ts new file mode 100644 index 000000000000..12fa9020bf36 --- /dev/null +++ b/lib/node_modules/@stdlib/strided/base/reinterpret-boolean/docs/types/test.ts @@ -0,0 +1,55 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2024 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 BooleanArray = require( '@stdlib/array/bool' ); +import reinterpret = require( './index' ); + + +// TESTS // + +// The function returns a Uint8Array... +{ + reinterpret( new BooleanArray( 10 ), 0 ); // $ExpectType Uint8Array +} + +// The compiler throws an error if not provided a first argument which is a BooleanArray... +{ + reinterpret( '10', 0 ); // $ExpectError + reinterpret( 10, 0 ); // $ExpectError + reinterpret( true, 0 ); // $ExpectError + reinterpret( false, 0 ); // $ExpectError + reinterpret( null, 0 ); // $ExpectError + reinterpret( undefined, 0 ); // $ExpectError + reinterpret( [], 0 ); // $ExpectError + reinterpret( {}, 0 ); // $ExpectError + reinterpret( ( x: number ): number => x, 0 ); // $ExpectError +} + +// The compiler throws an error if not provided a second argument which is a number... +{ + const x = new BooleanArray( 10 ); + + reinterpret( x, '10' ); // $ExpectError + reinterpret( x, true ); // $ExpectError + reinterpret( x, false ); // $ExpectError + reinterpret( x, null ); // $ExpectError + reinterpret( x, undefined ); // $ExpectError + reinterpret( x, [] ); // $ExpectError + reinterpret( x, {} ); // $ExpectError + reinterpret( x, ( x: number ): number => x ); // $ExpectError +}