diff --git a/lib/node_modules/@stdlib/assert/is-same-typed-array-like/README.md b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/README.md new file mode 100644 index 00000000000..187ade975de --- /dev/null +++ b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/README.md @@ -0,0 +1,100 @@ + + +# isSameArrayLike + +> Test if two arguments are both typed-array-like objects and have the [same values][@stdlib/assert/is-same-value]. + +
+ +## Usage + +```javascript +var isSameTypedArrayLike = require( '@stdlib/assert/is-same-typed-array-like' ); +``` + +#### isSameTypedArrayLike( v1, v2 ) + +Tests if two arguments are both typed-array-like objects and have the [same values][@stdlib/assert/is-same-value]. + +```javascript +var Int8Array = require( '@stdlib/array/int8' ); +var Int16Array = require( '@stdlib/array/int16' ); + +var x = new Int8Array( [ 1.0, 2.0 ] ); +var y = new Int16Array( [ 1.0, 2.0 ] ); +var bool = isSameTypedArrayLike( x, y ); +// returns true + +bool = isSameTypedArrayLike( x, new Int8Array( [ -1.0, 2.0 ] ) ); +// returns false +``` + +
+ + + +
+ +## Examples + + + +```javascript +var Int8Array = require( '@stdlib/array/int8' ); +var Int16Array = require( '@stdlib/array/int16' ); +var isSameTypedArrayLike = require( '@stdlib/assert/is-same-typed-array-like' ); + +var x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); +var y = new Int16Array( [ 1.0, 2.0, 3.0 ] ); +var out = isSameTypedArrayLike( x, y ); +// returns true + +x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); +y = new Int16Array( [ 1.0, 2.0, 4.0 ] ); +out = isSameTypedArrayLike( x, y ); +// returns false +``` + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/assert/is-same-typed-array-like/benchmark/benchmark.length.js b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/benchmark/benchmark.length.js new file mode 100644 index 00000000000..49c0ad961f8 --- /dev/null +++ b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/benchmark/benchmark.length.js @@ -0,0 +1,96 @@ +/** +* @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 isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive; +var pow = require( '@stdlib/math/base/special/pow' ); +var Int8Array = require( '@stdlib/array/int8' ); +var pkg = require( './../package.json' ).name; +var isSameTypedArrayLike = require( './../lib' ); + + +// FUNCTIONS // + +/** +* Creates a benchmark function. +* +* @private +* @param {PositiveInteger} len - array length +* @returns {Function} benchmark function +*/ +function createBenchmark( len ) { + var x = new Int8Array( len ); + var y = new Int8Array( len ); + return benchmark; + + /** + * Benchmark function. + * + * @private + * @param {Benchmark} b - benchmark instance + */ + function benchmark( b ) { + var bool; + var i; + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + bool = isSameTypedArrayLike( x, y ); + if ( typeof bool !== 'boolean' ) { + b.fail( 'should return a boolean' ); + } + } + b.toc(); + if ( !isBoolean( bool ) ) { + b.fail( 'should return a boolean' ); + } + b.pass( 'benchmark finished' ); + b.end(); + } +} + + +// MAIN // + +/** +* Main execution sequence. +* +* @private +*/ +function main() { + var len; + var min; + var max; + var f; + var i; + + min = 1; // 10^min + max = 6; // 10^max + + for ( i = min; i <= max; i++ ) { + len = pow( 10, i ); + f = createBenchmark( len ); + bench( pkg+':len='+len, f ); + } +} + +main(); diff --git a/lib/node_modules/@stdlib/assert/is-same-typed-array-like/docs/repl.txt b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/docs/repl.txt new file mode 100644 index 00000000000..ff6cc272106 --- /dev/null +++ b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/docs/repl.txt @@ -0,0 +1,36 @@ + +{{alias}}( v1, v2 ) + Tests if two arguments are both typed-array-like objects and have the same + values. + + Parameters + ---------- + v1: any + First input value. + + v2: any + Second input value. + + Returns + ------- + bool: boolean + Boolean indicating whether two arguments are both typed-array-like + objects and have the same values. + + Examples + -------- + > var Int8Array = require( '@stdlib/array/int8' ); + > var Int16Array = require( '@stdlib/array/int16' ); + > var x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); + > var y = new Int16Array( [ 1.0, 2.0, 3.0 ] ); + > var bool = {{alias}}( x, y ) + true + + > x = new Int8Array( [ 1.0, 2.0, 4.0 ] ); + > y = new Int8Array( [ 1.0, 2.0, 3.0 ] ); + > bool = {{alias}}( x, y ) + false + + See Also + -------- + diff --git a/lib/node_modules/@stdlib/assert/is-same-typed-array-like/docs/types/index.d.ts b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/docs/types/index.d.ts new file mode 100644 index 00000000000..2485bfd39cc --- /dev/null +++ b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/docs/types/index.d.ts @@ -0,0 +1,50 @@ +/* +* @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 + +/** +* Tests if two arguments are both typed-array-like objects and have the same values. +* +* @param v1 - first input value +* @param v2 - second input value +* @returns boolean indicating whether the two arguments are both typed-array-like objects with the same values +* +* @example +* var Int8Array = require( '@stdlib/array/int8' ); +* var Int16Array = require( '@stdlib/array/int16' ); +* var x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); +* var y = new Int16Array( [ 1.0, 2.0, 3.0 ] ); +* +* var out = isSameTypedArrayLike( x, y ); +* // returns true +* +* @example +* var Int8Array = require( '@stdlib/array/int8' ); +* var x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); +* var y = new Int8Array( [ 1.0, 2.0, 4.0 ] ); +* +* var out = isSameTypedArrayLike( x, y ); +* // returns false +*/ +declare function isSameTypedArrayLike( v1: any, v2: any ): boolean; + + +// EXPORTS // + +export = isSameTypedArrayLike; diff --git a/lib/node_modules/@stdlib/assert/is-same-typed-array-like/docs/types/test.ts b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/docs/types/test.ts new file mode 100644 index 00000000000..19129aaa1d4 --- /dev/null +++ b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/docs/types/test.ts @@ -0,0 +1,40 @@ +/* +* @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 Int16Array = require( '@stdlib/array/int16' ); +import Int8Array = require( '@stdlib/array/int8' ); +import isSameTypedArrayLike = require( './index' ); + + +// TESTS // + +// The function returns a boolean... +{ + isSameTypedArrayLike( new Int8Array( [ 1.0, 2.0, 3.0 ] ), new Int16Array( [ 1.0, 2.0, 3.0 ] ) ); // $ExpectType boolean + isSameTypedArrayLike( new Int8Array( [ 1.0, 2.0, 3.0 ] ), new Int8Array( [ 1.0, 2.0, 4.0 ] ) ); // $ExpectType boolean + isSameTypedArrayLike( 3.14, 3.14 ); // $ExpectType boolean + isSameTypedArrayLike( null, null ); // $ExpectType boolean + isSameTypedArrayLike( 'beep', 'boop' ); // $ExpectType boolean +} + +// The compiler throws an error if the function is provided an unsupported number of arguments... +{ + isSameTypedArrayLike(); // $ExpectError + isSameTypedArrayLike( 3.14 ); // $ExpectError + isSameTypedArrayLike( 'beep', 'beep', 3.14 ); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/assert/is-same-typed-array-like/examples/index.js b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/examples/index.js new file mode 100644 index 00000000000..2731f7e9d6a --- /dev/null +++ b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/examples/index.js @@ -0,0 +1,35 @@ +/** +* @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 Int8Array = require( '@stdlib/array/int8' ); +var Int16Array = require( '@stdlib/array/int16' ); +var isSameTypedArrayLike = require( './../lib' ); + +var x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); +var y = new Int16Array( [ 1.0, 2.0, 3.0 ] ); +var out = isSameTypedArrayLike( x, y ); +console.log( out ); +// => true + +x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); +y = new Int16Array( [ 1.0, 2.0, 4.0 ] ); +out = isSameTypedArrayLike( x, y ); +console.log( out ); +// => false diff --git a/lib/node_modules/@stdlib/assert/is-same-typed-array-like/lib/index.js b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/lib/index.js new file mode 100644 index 00000000000..d42555d8fc5 --- /dev/null +++ b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/lib/index.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'; + +/** +* Test if two arguments are both typed-array-like objects and have the same values. +* +* @module @stdlib/assert/is-same-typed-array-like +* +* @example +* var Int8Array = require( '@stdlib/array/int8' ); +* var Int16Array = require( '@stdlib/array/int16' ); +* var isSameTypedArrayLike = require( '@stdlib/assert/is-same-typed-array-like' ); +* +* var x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); +* var y = new Int16Array( [ 1.0, 2.0, 3.0 ] ); +* +* var out = isSameTypedArrayLike( x, y ); +* // returns true +* +* @example +* var Int8Array = require( '@stdlib/array/int8' ); +* var Int16Array = require( '@stdlib/array/int16' ); +* var isSameTypedArrayLike = require( '@stdlib/assert/is-same-typed-array-like' ); +* +* var x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); +* var y = new Int16Array( [ 1.0, 2.0, 4.0 ] ); +* +* var out = isSameTypedArrayLike( x, y ); +* // returns false +*/ + +// MODULES // + +var main = require( './main.js' ); + + +// EXPORTS // + +module.exports = main; diff --git a/lib/node_modules/@stdlib/assert/is-same-typed-array-like/lib/main.js b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/lib/main.js new file mode 100644 index 00000000000..1844db52843 --- /dev/null +++ b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/lib/main.js @@ -0,0 +1,66 @@ +/** +* @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 isTypedArrayLike = require( '@stdlib/assert/is-typed-array-like' ); +var hasSameValues = require( '@stdlib/array/base/assert/has-same-values' ); + + +// MAIN // + +/** +* Tests if two arguments are both typed-array-like objects and have the same values. +* +* @param {*} v1 - first value +* @param {*} v2 - second value +* @returns {boolean} boolean indicating if two arguments are both typed-array-like objects with the same values +* +* @example +* var Int8Array = require( '@stdlib/array/int8' ); +* var Int16Array = require( '@stdlib/array/int16' ); +* +* var x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); +* var y = new Int16Array( [ 1.0, 2.0, 3.0 ] ); +* +* var out = isSameTypedArrayLike( x, y ); +* // returns true +* +* @example +* var Int8Array = require( '@stdlib/array/int8' ); +* var Int16Array = require( '@stdlib/array/int16' ); +* +* var x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); +* var y = new Int16Array( [ 1.0, 2.0, 4.0 ] ); +* +* var out = isSameTypedArrayLike( x, y ); +* // returns false +*/ +function isSameTypedArrayLike( v1, v2 ) { + if ( isTypedArrayLike( v1 ) && isTypedArrayLike( v2 ) ) { + return hasSameValues( v1, v2 ); + } + return false; +} + + +// EXPORTS // + +module.exports = isSameTypedArrayLike; diff --git a/lib/node_modules/@stdlib/assert/is-same-typed-array-like/package.json b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/package.json new file mode 100644 index 00000000000..af9388eec6e --- /dev/null +++ b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/package.json @@ -0,0 +1,77 @@ +{ + "name": "@stdlib/assert/is-same-typed-array-like", + "version": "0.0.0", + "description": "Test if two arguments are both typed-array-like object and have the same values.", + "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", + "stdassert", + "assertion", + "assert", + "utilities", + "utility", + "utils", + "util", + "equal", + "same", + "strict", + "is", + "issame", + "issamevalue", + "isequal", + "isstrictequal", + "type", + "check", + "valid", + "validate", + "test", + "typed", + "array", + "generic" + ] +} diff --git a/lib/node_modules/@stdlib/assert/is-same-typed-array-like/test/test.js b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/test/test.js new file mode 100644 index 00000000000..ab2e89ffabb --- /dev/null +++ b/lib/node_modules/@stdlib/assert/is-same-typed-array-like/test/test.js @@ -0,0 +1,146 @@ +/** +* @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 Int8Array = require( '@stdlib/array/int8' ); +var Int16Array = require( '@stdlib/array/int16' ); +var isSameTypedArrayLike = require( './../lib' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof isSameTypedArrayLike, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function returns `true` if provided two typed-array-like objects having the same contents', function test( t ) { + var x; + var y; + + x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); + t.strictEqual( isSameTypedArrayLike( x, x ), true, 'returns expected value' ); + + x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); + y = new Int16Array( [ 1.0, 2.0, 3.0 ] ); + t.strictEqual( isSameTypedArrayLike( x, y ), true, 'returns expected value' ); + + t.end(); +}); + +tape( 'the function returns `false` if provided two typed-array-like objects having the different contents', function test( t ) { + var x; + var y; + + x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); + y = new Int16Array( [ 1.0, 2.0, 4.0 ] ); + t.strictEqual( isSameTypedArrayLike( x, y ), false, 'returns expected value' ); + + x = new Int8Array( [ 1.0, 2.0, 3.0, 4.0 ] ); + y = new Int8Array( [ 1.0, 2.0, 3.0 ] ); + t.strictEqual( isSameTypedArrayLike( x, y ), false, 'returns expected value' ); + + t.end(); +}); + +tape( 'the function returns `false` when one of the provided objects is not typed-array-like', function test( t ) { + var x; + var y; + + x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); + y = 'beep'; + t.strictEqual( isSameTypedArrayLike( x, y ), false, 'returns expected value' ); + + x = new Int8Array( [ 1.0, 2.0, 3.0, 4.0 ] ); + y = 12; + t.strictEqual( isSameTypedArrayLike( x, y ), false, 'returns expected value' ); + + x = new Int8Array( [ 1.0, 2.0, 3.0, 4.0 ] ); + y = null; + t.strictEqual( isSameTypedArrayLike( x, y ), false, 'returns expected value' ); + + x = new Int8Array( [ 1.0, 2.0, 3.0, 4.0 ] ); + y = undefined; + t.strictEqual( isSameTypedArrayLike( x, y ), false, 'returns expected value' ); + + x = new Int8Array( [ 1.0, 2.0, 3.0, 4.0 ] ); + y = {}; + t.strictEqual( isSameTypedArrayLike( x, y ), false, 'returns expected value' ); + + x = new Int8Array( [ 1.0, 2.0, 3.0, 4.0 ] ); + y = true; + t.strictEqual( isSameTypedArrayLike( x, y ), false, 'returns expected value' ); + + x = new Int8Array( [ 1.0, 2.0, 3.0, 4.0 ] ); + y = [ 1.0, 2.0, 3.0, 4.0 ]; + t.strictEqual( isSameTypedArrayLike( x, y ), false, 'returns expected value' ); + + t.end(); +}); + +tape( 'the function returns `false` if not provided two typed-array-like objects having the same contents', function test( t ) { + var x; + var y; + var i; + + x = [ + '', + 'beep', + 5, + 3.14, + -3.14, + 0.0, + -0.0, + true, + false, + null, + void 0, + [ 1.0 ], + {}, + function noop() {}, + [ 1.0, 2.0, 3.0 ], + [ -0.0, -0.0, -0.0 ] + ]; + y = [ + 'abc', + 'boop', + -5, + -3.14, + 3.14, + -0.0, + 0.0, + false, + true, + void 0, + null, + [ -1.0 ], + {}, + function noop() {}, + [ 2.0, 4.0, 6.0 ], + [ 0.0, 0.0, 0.0 ] + ]; + for ( i = 0; i < x.length; i++ ) { + t.strictEqual( isSameTypedArrayLike( x[ i ], y[ i ] ), false, 'returns expected value when provided '+x[ i ]+' and '+y[ i ] ); + } + t.end(); +});