Skip to content

Commit f4a06d9

Browse files
gururaj1512kgryte
authored andcommitted
remove: remove cidentityf from namespace
This commit removes the `cidentityf` symbol from the `@stdlib/math/base/special` namespace due to a package migration. BREAKING CHANGE: remove `cidentityf` To migrate, users should access the same symbol via the `@stdlib/complex/float32/base` namespace. --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 31343c9 commit f4a06d9

File tree

2 files changed

+0
-32
lines changed

2 files changed

+0
-32
lines changed

lib/node_modules/@stdlib/math/base/special/docs/types/index.d.ts

-23
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ import cflipsign = require( '@stdlib/math/base/special/cflipsign' );
9696
import cflipsignf = require( '@stdlib/math/base/special/cflipsignf' );
9797
import cfloor = require( '@stdlib/math/base/special/cfloor' );
9898
import cfloorn = require( '@stdlib/math/base/special/cfloorn' );
99-
import cidentityf = require( '@stdlib/math/base/special/cidentityf' );
10099
import cinv = require( '@stdlib/math/base/special/cinv' );
101100
import clamp = require( '@stdlib/math/base/special/clamp' );
102101
import clampf = require( '@stdlib/math/base/special/clampf' );
@@ -2402,28 +2401,6 @@ interface Namespace {
24022401
*/
24032402
cfloorn: typeof cfloorn;
24042403

2405-
/**
2406-
* Evaluates the identity function for single-precision complex floating-point number.
2407-
*
2408-
* @param z - input value
2409-
* @returns input value
2410-
*
2411-
* @example
2412-
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
2413-
* var real = require( '@stdlib/complex/float32/real' );
2414-
* var imag = require( '@stdlib/complex/float32/imag' );
2415-
*
2416-
* var v = ns.cidentityf( new Complex64( -1.0, 2.0 ) );
2417-
* // returns <Complex64>
2418-
*
2419-
* var re = real( v );
2420-
* // returns -1.0
2421-
*
2422-
* var im = imag( v );
2423-
* // returns 2.0
2424-
*/
2425-
cidentityf: typeof cidentityf;
2426-
24272404
/**
24282405
* Computes the inverse of a double-precision complex floating-point number.
24292406
*

lib/node_modules/@stdlib/math/base/special/lib/index.js

-9
Original file line numberDiff line numberDiff line change
@@ -720,15 +720,6 @@ setReadOnly( special, 'cfloor', require( '@stdlib/math/base/special/cfloor' ) );
720720
*/
721721
setReadOnly( special, 'cfloorn', require( '@stdlib/math/base/special/cfloorn' ) );
722722

723-
/**
724-
* @name cidentityf
725-
* @memberof special
726-
* @readonly
727-
* @type {Function}
728-
* @see {@link module:@stdlib/math/base/special/cidentityf}
729-
*/
730-
setReadOnly( special, 'cidentityf', require( '@stdlib/math/base/special/cidentityf' ) );
731-
732723
/**
733724
* @name cinv
734725
* @memberof special

0 commit comments

Comments
 (0)