Skip to content

Commit 0ebeaf8

Browse files
gururaj1512kgryte
authored andcommitted
remove: remove cidentity from namespace
This commit removes the `cidentity` symbol from the `@stdlib/math/base/special` namespace due to a package migration. BREAKING CHANGE: remove `cidentity` To migrate, users should access the same symbol via the `@stdlib/complex/float64/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 404a4ed commit 0ebeaf8

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

Lines changed: 0 additions & 23 deletions
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 cidentity = require( '@stdlib/math/base/special/cidentity' );
10099
import cidentityf = require( '@stdlib/math/base/special/cidentityf' );
101100
import cinv = require( '@stdlib/math/base/special/cinv' );
102101
import clamp = require( '@stdlib/math/base/special/clamp' );
@@ -2403,28 +2402,6 @@ interface Namespace {
24032402
*/
24042403
cfloorn: typeof cfloorn;
24052404

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

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

Lines changed: 0 additions & 9 deletions
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 cidentity
725-
* @memberof special
726-
* @readonly
727-
* @type {Function}
728-
* @see {@link module:@stdlib/math/base/special/cidentity}
729-
*/
730-
setReadOnly( special, 'cidentity', require( '@stdlib/math/base/special/cidentity' ) );
731-
732723
/**
733724
* @name cidentityf
734725
* @memberof special

0 commit comments

Comments
 (0)