We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb9f295 commit 998cea3Copy full SHA for 998cea3
lib/node_modules/@stdlib/ndarray/base/every/scripts/predicate_loops.js
@@ -133,10 +133,10 @@ var ORDER = 'row-major';
133
*/
134
function callbackBody( ch1 ) {
135
if ( ch1 === 'c' ) {
136
- return 'return ( stdlib_complex64_real( x ) == 0.0f && stdlib_complex64_imag( x ) === 0.0f );';
+ return 'return ( stdlib_complex64_real( x ) == 0.0f && stdlib_complex64_imag( x ) == 0.0f );';
137
}
138
if ( ch1 === 'z' ) {
139
- return 'return ( stdlib_complex128_real( x ) == 0.0 && stdlib_complex128_imag( x ) === 0.0 );';
+ return 'return ( stdlib_complex128_real( x ) == 0.0 && stdlib_complex128_imag( x ) == 0.0 );';
140
141
if ( ch1 === 'x' ) {
142
return 'return x;';
0 commit comments