Skip to content

Commit

Permalink
feat: add equalComplex64 to namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Jan 16, 2024
1 parent e99eac7 commit b31d186
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/complex/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,15 @@ setReadOnly( ns, 'complexDataTypes', require( '@stdlib/complex/dtypes' ) );
*/
setReadOnly( ns, 'equalComplex128', require( '@stdlib/complex/eq' ) );

/**
* @name equalComplex64
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/complex/eqf}
*/
setReadOnly( ns, 'equalComplex64', require( '@stdlib/complex/eqf' ) );

/**
* @name Complex64
* @memberof ns
Expand Down

1 comment on commit b31d186

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
complex/eqf $\color{green}100/100$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}100/100$
$\color{green}+100.00\%$
complex $\color{green}231/231$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}231/231$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.