Skip to content

Commit 6b695a6

Browse files
authored
remove: remove caddf from namespace
This commit removes the `caddf` symbol from the `@stdlib/math/base/ops` namespace due to a package migration. BREAKING CHANGE: remove `caddf` To migrate, users should access the same symbol via the `@stdlib/complex/float32/base` namespace. PR-URL: #6120 Ref: #2261 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 77d3b84 commit 6b695a6

File tree

2 files changed

+0
-36
lines changed

2 files changed

+0
-36
lines changed

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

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
/* eslint-disable max-lines */
2222

23-
import caddf = require( '@stdlib/complex/float32/base/add' );
2423
import cmulf = require( '@stdlib/complex/float32/base/mul' );
2524
import cadd = require( '@stdlib/complex/float64/base/add' );
2625
import cmul = require( '@stdlib/complex/float64/base/mul' );
@@ -29,32 +28,6 @@ import cmul = require( '@stdlib/complex/float64/base/mul' );
2928
* Interface describing the `ops` namespace.
3029
*/
3130
interface Namespace {
32-
/**
33-
* Adds two single-precision complex floating-point numbers.
34-
*
35-
* @param z1 - complex number
36-
* @param z2 - complex number
37-
* @returns result
38-
*
39-
* @example
40-
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
41-
* var realf = require( '@stdlib/complex/float32/real' );
42-
* var imagf = require( '@stdlib/complex/float32/imag' );
43-
*
44-
* var z = new Complex64( 5.0, 3.0 );
45-
* // returns <Complex64>
46-
*
47-
* var out = ns.caddf( z, z );
48-
* // returns <Complex64>
49-
*
50-
* var re = realf( out );
51-
* // returns 10.0
52-
*
53-
* var im = imagf( out );
54-
* // returns 6.0
55-
*/
56-
caddf: typeof caddf;
57-
5831
/**
5932
* Multiplies two single-precision complex floating-point numbers.
6033
*

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

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,6 @@ var setReadOnly = require( '@stdlib/utils/define-read-only-property' );
3636
*/
3737
var ns = {};
3838

39-
/**
40-
* @name caddf
41-
* @memberof ns
42-
* @readonly
43-
* @type {Function}
44-
* @see {@link module:@stdlib/complex/float32/base/add}
45-
*/
46-
setReadOnly( ns, 'caddf', require( '@stdlib/complex/float32/base/add' ) );
47-
4839
/**
4940
* @name cmulf
5041
* @memberof ns

0 commit comments

Comments
 (0)