diff --git a/assert/coverage.ndjson b/assert/coverage.ndjson index 4857136fc..0e992d39b 100644 --- a/assert/coverage.ndjson +++ b/assert/coverage.ndjson @@ -7,3 +7,4 @@ [2607,2607,100,1,1,100,0,0,100,2607,2607,100,"783804dbc9b3899c5227c5593e0ca1e8a6a9f195","2023-12-09 13:57:44 -0800"] [2616,2616,100,1,1,100,0,0,100,2616,2616,100,"07979d642df5ec98d4fe4b3c42a640eadd6dfbc1","2024-01-17 04:03:32 -0800"] [2625,2625,100,1,1,100,0,0,100,2625,2625,100,"9042c6fc997c52ffcca383771cc614fbc7c79d2e","2024-01-17 04:10:16 -0800"] +[2634,2634,100,1,1,100,0,0,100,2634,2634,100,"722bff40a8aae808ede63fa9cbcaf4e02823e83c","2024-01-17 04:19:18 -0800"] diff --git a/assert/index.html b/assert/index.html index 2cc6d5801..e83a02e4a 100644 --- a/assert/index.html +++ b/assert/index.html @@ -25,7 +25,7 @@

All files assert/lib

100% Statements - 2625/2625 + 2634/2634
@@ -46,7 +46,7 @@

All files assert/lib

100% Lines - 2625/2625 + 2634/2634
@@ -84,13 +84,13 @@

All files assert/lib

100% - 2625/2625 + 2634/2634 100% 1/1 100% 0/0 100% - 2625/2625 + 2634/2634 @@ -101,7 +101,7 @@

All files assert/lib

+ + + + + + \ No newline at end of file diff --git a/assert/is-same-complex128array/index.js.html b/assert/is-same-complex128array/index.js.html new file mode 100644 index 000000000..75e031bb8 --- /dev/null +++ b/assert/is-same-complex128array/index.js.html @@ -0,0 +1,247 @@ + + + + + + Code coverage report for assert/is-same-complex128array/lib/index.js + + + + + + + + + +
+
+

All files / assert/is-same-complex128array/lib index.js

+
+ +
+ 100% + Statements + 54/54 +
+ + +
+ 100% + Branches + 1/1 +
+ + +
+ 100% + Functions + 0/0 +
+ + +
+ 100% + Lines + 54/54 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +551x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x + 
/**
+* @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 Complex128Arrays and have the same values.
+*
+* @module @stdlib/assert/is-same-complex128array
+*
+* @example
+* var Complex128Array = require( '@stdlib/array/complex128' );
+* var isSameComplex128Array = require( '@stdlib/assert/is-same-complex128array' );
+*
+* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0 ] );
+* var y = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0 ] );
+*
+* var out = isSameComplex128Array( x, y );
+* // returns true
+*
+* @example
+* var Complex128Array = require( '@stdlib/array/complex128' );
+* var isSameComplex128Array = require( '@stdlib/assert/is-same-complex128array' );
+*
+* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0 ] );
+* var y = new Complex128Array( [ 1.0, 2.0, 4.0, 4.0 ] );
+*
+* var out = isSameComplex128Array( x, y );
+* // returns false
+*/
+ 
+// MODULES //
+ 
+var main = require( './main.js' );
+ 
+ 
+// EXPORTS //
+ 
+module.exports = main;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/assert/is-same-complex128array/main.js.html b/assert/is-same-complex128array/main.js.html new file mode 100644 index 000000000..e96602ed4 --- /dev/null +++ b/assert/is-same-complex128array/main.js.html @@ -0,0 +1,277 @@ + + + + + + Code coverage report for assert/is-same-complex128array/lib/main.js + + + + + + + + + +
+
+

All files / assert/is-same-complex128array/lib main.js

+
+ +
+ 100% + Statements + 64/64 +
+ + +
+ 100% + Branches + 5/5 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 64/64 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +651x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +23x +23x +6x +6x +17x +23x +1x +1x +1x +1x +1x + 
/**
+* @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 isComplex128Array = require( '@stdlib/assert/is-complex128array' );
+var hasSameValues = require( '@stdlib/array/base/assert/has-same-values' );
+ 
+ 
+// MAIN //
+ 
+/**
+* Tests if two arguments are both Complex128Arrays and have the same values.
+*
+* @param {*} v1 - first value
+* @param {*} v2 - second value
+* @returns {boolean} boolean result
+*
+* @example
+* var Complex128Array = require( '@stdlib/array/complex128' );
+*
+* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0 ] );
+* var y = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0 ] );
+*
+* var out = isSameComplex128Array( x, y );
+* // returns true
+*
+* @example
+* var Complex128Array = require( '@stdlib/array/complex128' );
+*
+* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0 ] );
+* var y = new Complex128Array( [ 1.0, 2.0, 4.0, 4.0 ] );
+*
+* var out = isSameComplex128Array( x, y );
+* // returns false
+*/
+function isSameComplex128Array( v1, v2 ) {
+	if ( isComplex128Array( v1 ) && isComplex128Array( v2 ) ) {
+		return hasSameValues( v1, v2 );
+	}
+	return false;
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = isSameComplex128Array;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/namespace/alias2pkg/coverage.ndjson b/namespace/alias2pkg/coverage.ndjson index b8c2dcdfb..6ce142096 100644 --- a/namespace/alias2pkg/coverage.ndjson +++ b/namespace/alias2pkg/coverage.ndjson @@ -59,3 +59,4 @@ [95,95,100,7,7,100,1,1,100,95,95,100,"20b4078d2e7b17b8e250b5ac4676fe19f2ef16c0","2024-01-13 20:15:38 -0800"] [95,95,100,7,7,100,1,1,100,95,95,100,"07979d642df5ec98d4fe4b3c42a640eadd6dfbc1","2024-01-17 04:03:32 -0800"] [95,95,100,7,7,100,1,1,100,95,95,100,"9042c6fc997c52ffcca383771cc614fbc7c79d2e","2024-01-17 04:10:16 -0800"] +[95,95,100,7,7,100,1,1,100,95,95,100,"722bff40a8aae808ede63fa9cbcaf4e02823e83c","2024-01-17 04:19:18 -0800"] diff --git a/namespace/alias2pkg/index.html b/namespace/alias2pkg/index.html index 010c240ab..680678e17 100644 --- a/namespace/alias2pkg/index.html +++ b/namespace/alias2pkg/index.html @@ -116,7 +116,7 @@

All files namespace/alias2pkg/lib