Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed May 25, 2024
1 parent f185531 commit 8c8f743
Show file tree
Hide file tree
Showing 51 changed files with 106 additions and 105 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Frank Kovacs <[email protected]>
Golden Kumar <[email protected]>
Gunj Joshi <[email protected]>
Harshita Kalani <[email protected]>
Hridyanshu <[email protected]>
Jaimin Godhani <[email protected]>
James Gelok <[email protected]>
Jaysukh Makvana <[email protected]>
Expand Down
20 changes: 10 additions & 10 deletions docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1986,8 +1986,8 @@ interface Namespace {
* @returns boolean indicating if a value is a 64-bit or 128-bit complex number
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex64 = require( '@stdlib/complex/float32' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
*
* var x = new Complex128( 4.0, 2.0 );
* var bool = ns.isComplex( x );
Expand All @@ -2006,8 +2006,8 @@ interface Namespace {
* @returns boolean indicating if a value is a complex number-like object.
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex64 = require( '@stdlib/complex/float32' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
*
* var x = new Complex128( 4.0, 2.0 );
* var bool = ns.isComplexLike( x );
Expand Down Expand Up @@ -2082,7 +2082,7 @@ interface Namespace {
* @returns boolean indicating if a value is a 64-bit complex number
*
* @example
* var Complex64 = require( '@stdlib/complex/float32' );
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
*
* var x = new Complex64( 4.0, 2.0 );
*
Expand Down Expand Up @@ -2174,7 +2174,7 @@ interface Namespace {
* @returns boolean indicating if a value is a 128-bit complex number
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
*
* var x = new Complex128( 4.0, 2.0 );
*
Expand Down Expand Up @@ -5704,7 +5704,7 @@ interface Namespace {
* @returns boolean indicating whether two arguments are the same
*
* @example
* var Complex64 = require( '@stdlib/complex/float32' );
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
*
* var x = new Complex64( 1.0, 2.0 );
* var y = new Complex64( 1.0, 2.0 );
Expand All @@ -5713,7 +5713,7 @@ interface Namespace {
* // returns true
*
* @example
* var Complex64 = require( '@stdlib/complex/float32' );
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
*
* var x = new Complex64( 1.0, 2.0 );
* var y = new Complex64( -1.0, -2.0 );
Expand Down Expand Up @@ -5766,7 +5766,7 @@ interface Namespace {
* @returns boolean indicating whether two arguments are the same
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
*
* var x = new Complex128( 1.0, 2.0 );
* var y = new Complex128( 1.0, 2.0 );
Expand All @@ -5775,7 +5775,7 @@ interface Namespace {
* // returns true
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
*
* var x = new Complex128( 1.0, 2.0 );
* var y = new Complex128( -1.0, -2.0 );
Expand Down
2 changes: 1 addition & 1 deletion is-accessor-array/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Tests if a value is an array-like object supporting the accessor (get/set) proto

```javascript
var Complex128Array = require( '@stdlib/array/complex128' );
var Complex128 = require( '@stdlib/complex/float64' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );

// Create a new complex number array:
var arr = new Complex128Array( 10 );
Expand Down
8 changes: 4 additions & 4 deletions is-complex-like/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ var isComplexLike = require( '@stdlib/assert/is-complex-like' );
Tests if a value is a complex number-like `object`.

```javascript
var Complex128 = require( '@stdlib/complex/float64' );
var Complex64 = require( '@stdlib/complex/float32' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var Complex64 = require( '@stdlib/complex/float32/ctor' );

var x = new Complex128( 1.0, 3.0 );
var bool = isComplexLike( x );
Expand Down Expand Up @@ -80,8 +80,8 @@ bool = isComplexLike( x );
<!-- eslint-disable object-curly-newline, object-property-newline -->

```javascript
var Complex64 = require( '@stdlib/complex/float32' );
var Complex128 = require( '@stdlib/complex/float64' );
var Complex64 = require( '@stdlib/complex/float32/ctor' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var isComplexLike = require( '@stdlib/assert/is-complex-like' );

var out = isComplexLike( new Complex64( 2.0, 2.0 ) );
Expand Down
4 changes: 2 additions & 2 deletions is-complex-like/benchmark/benchmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@

var bench = require( '@stdlib/bench' );
var isBoolean = require( './../../is-boolean' ).isPrimitive;
var Complex64 = require( '@stdlib/complex/float32' );
var Complex128 = require( '@stdlib/complex/float64' );
var Complex64 = require( '@stdlib/complex/float32/ctor' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var pkg = require( './../package.json' ).name;
var isComplexLike = require( './../lib' );

Expand Down
4 changes: 2 additions & 2 deletions is-complex-like/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ import { ComplexLike } from '@stdlib/types/complex';
* @returns boolean indicating if a value is a complex number-like object.
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex64 = require( '@stdlib/complex/float32' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
*
* var x = new Complex128( 4.0, 2.0 );
* var bool = isComplexLike( x );
Expand Down
4 changes: 2 additions & 2 deletions is-complex-like/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
*/

import isComplexLike = require( './index' );
import Complex128 = require( '@stdlib/complex/float64' );
import Complex64 = require( '@stdlib/complex/float32' );
import Complex128 = require( '@stdlib/complex/float64/ctor' );
import Complex64 = require( '@stdlib/complex/float32/ctor' );


// TESTS //
Expand Down
4 changes: 2 additions & 2 deletions is-complex-like/examples/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

'use strict';

var Complex64 = require( '@stdlib/complex/float32' );
var Complex128 = require( '@stdlib/complex/float64' );
var Complex64 = require( '@stdlib/complex/float32/ctor' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var isComplexLike = require( './../lib' );

console.log( isComplexLike( new Complex64( 2.0, 2.0 ) ) );
Expand Down
4 changes: 2 additions & 2 deletions is-complex-like/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
* @module @stdlib/assert/is-complex-like
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex64 = require( '@stdlib/complex/float32' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
* var isComplexLike = require( '@stdlib/assert/is-complex-like' );
*
* var x = new Complex128( 4.0, 2.0 );
Expand Down
8 changes: 4 additions & 4 deletions is-complex-like/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

// MODULES //

var Complex128 = require( '@stdlib/complex/float64' );
var Complex64 = require( '@stdlib/complex/float32' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var Complex64 = require( '@stdlib/complex/float32/ctor' );


// MAIN //
Expand All @@ -33,8 +33,8 @@ var Complex64 = require( '@stdlib/complex/float32' );
* @returns {boolean} boolean indicating if a value is a complex number-like object.
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex64 = require( '@stdlib/complex/float32' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
*
* var x = new Complex128( 4.0, 2.0 );
* var bool = isComplexLike( x );
Expand Down
4 changes: 2 additions & 2 deletions is-complex-like/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
// MODULES //

var tape = require( 'tape' );
var Complex64 = require( '@stdlib/complex/float32' );
var Complex128 = require( '@stdlib/complex/float64' );
var Complex64 = require( '@stdlib/complex/float32/ctor' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var isComplexLike = require( './../lib' );


Expand Down
8 changes: 4 additions & 4 deletions is-complex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ var isComplex = require( '@stdlib/assert/is-complex' );
Tests if a value is a [64-bit][@stdlib/complex/float32] or [128-bit][@stdlib/complex/float64] complex number.

```javascript
var Complex128 = require( '@stdlib/complex/float64' );
var Complex64 = require( '@stdlib/complex/float32' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var Complex64 = require( '@stdlib/complex/float32/ctor' );

var x = new Complex128( 1.0, 3.0 );
var bool = isComplex( x );
Expand All @@ -58,8 +58,8 @@ bool = isComplex( x );
<!-- eslint no-undef: "error" -->

```javascript
var Complex64 = require( '@stdlib/complex/float32' );
var Complex128 = require( '@stdlib/complex/float64' );
var Complex64 = require( '@stdlib/complex/float32/ctor' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var isComplex = require( '@stdlib/assert/is-complex' );

var out = isComplex( new Complex64( 2.0, 2.0 ) );
Expand Down
4 changes: 2 additions & 2 deletions is-complex/benchmark/benchmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@

var bench = require( '@stdlib/bench' );
var isBoolean = require( './../../is-boolean' ).isPrimitive;
var Complex64 = require( '@stdlib/complex/float32' );
var Complex128 = require( '@stdlib/complex/float64' );
var Complex64 = require( '@stdlib/complex/float32/ctor' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var pkg = require( './../package.json' ).name;
var isComplex = require( './../lib' );

Expand Down
4 changes: 2 additions & 2 deletions is-complex/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ import { Complex128, Complex64 } from '@stdlib/types/complex';
* @returns boolean indicating if a value is a 64-bit or 128-bit complex number
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex64 = require( '@stdlib/complex/float32' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
*
* var x = new Complex128( 4.0, 2.0 );
* var bool = isComplex( x );
Expand Down
4 changes: 2 additions & 2 deletions is-complex/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
*/

import isComplex = require( './index' );
import Complex128 = require( '@stdlib/complex/float64' );
import Complex64 = require( '@stdlib/complex/float32' );
import Complex128 = require( '@stdlib/complex/float64/ctor' );
import Complex64 = require( '@stdlib/complex/float32/ctor' );


// TESTS //
Expand Down
4 changes: 2 additions & 2 deletions is-complex/examples/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

'use strict';

var Complex64 = require( '@stdlib/complex/float32' );
var Complex128 = require( '@stdlib/complex/float64' );
var Complex64 = require( '@stdlib/complex/float32/ctor' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var isComplex = require( './../lib' );

console.log( isComplex( new Complex64( 2.0, 2.0 ) ) );
Expand Down
4 changes: 2 additions & 2 deletions is-complex/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
* @module @stdlib/assert/is-complex
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex64 = require( '@stdlib/complex/float32' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
* var isComplex = require( '@stdlib/assert/is-complex' );
*
* var x = new Complex128( 4.0, 2.0 );
Expand Down
8 changes: 4 additions & 4 deletions is-complex/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

// MODULES //

var Complex128 = require( '@stdlib/complex/float64' );
var Complex64 = require( '@stdlib/complex/float32' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var Complex64 = require( '@stdlib/complex/float32/ctor' );
var constructorName = require( '@stdlib/utils/constructor-name' );


Expand All @@ -34,8 +34,8 @@ var constructorName = require( '@stdlib/utils/constructor-name' );
* @returns {boolean} boolean indicating if a value is a 64-bit or 128-bit complex number
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex64 = require( '@stdlib/complex/float32' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
*
* var x = new Complex128( 4.0, 2.0 );
* var bool = isComplex( x );
Expand Down
4 changes: 2 additions & 2 deletions is-complex/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
// MODULES //

var tape = require( 'tape' );
var Complex64 = require( '@stdlib/complex/float32' );
var Complex128 = require( '@stdlib/complex/float64' );
var Complex64 = require( '@stdlib/complex/float32/ctor' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var isComplex = require( './../lib' );


Expand Down
6 changes: 3 additions & 3 deletions is-complex128/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ var isComplex128 = require( '@stdlib/assert/is-complex128' );
Tests if a value is a [128-bit complex number][@stdlib/complex/float64].

```javascript
var Complex128 = require( '@stdlib/complex/float64' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );

var x = new Complex128( 1.0, 3.0 );

Expand All @@ -54,8 +54,8 @@ var bool = isComplex128( x );
<!-- eslint no-undef: "error" -->

```javascript
var Complex64 = require( '@stdlib/complex/float32' );
var Complex128 = require( '@stdlib/complex/float64' );
var Complex64 = require( '@stdlib/complex/float32/ctor' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var isComplex128 = require( '@stdlib/assert/is-complex128' );

var out = isComplex128( new Complex128( 3.0, 1.0 ) );
Expand Down
2 changes: 1 addition & 1 deletion is-complex128/benchmark/benchmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

var bench = require( '@stdlib/bench' );
var isBoolean = require( './../../is-boolean' ).isPrimitive;
var Complex128 = require( '@stdlib/complex/float64' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var pkg = require( './../package.json' ).name;
var isComplex128 = require( './../lib' );

Expand Down
2 changes: 1 addition & 1 deletion is-complex128/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { Complex128 } from '@stdlib/types/complex';
* @returns boolean indicating if a value is a 128-bit complex number
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
*
* var x = new Complex128( 4.0, 2.0 );
*
Expand Down
4 changes: 2 additions & 2 deletions is-complex128/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
*/

import isComplex128 = require( './index' );
import Complex128 = require( '@stdlib/complex/float64' );
import Complex64 = require( '@stdlib/complex/float32' );
import Complex128 = require( '@stdlib/complex/float64/ctor' );
import Complex64 = require( '@stdlib/complex/float32/ctor' );


// TESTS //
Expand Down
4 changes: 2 additions & 2 deletions is-complex128/examples/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

'use strict';

var Complex64 = require( '@stdlib/complex/float32' );
var Complex128 = require( '@stdlib/complex/float64' );
var Complex64 = require( '@stdlib/complex/float32/ctor' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var isComplex128 = require( './../lib' );

console.log( isComplex128( new Complex128( 3.0, 1.0 ) ) );
Expand Down
2 changes: 1 addition & 1 deletion is-complex128/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @module @stdlib/assert/is-complex128
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
* var isComplex128 = require( '@stdlib/assert/is-complex128' );
*
* var x = new Complex128( 4.0, 2.0 );
Expand Down
4 changes: 2 additions & 2 deletions is-complex128/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

// MODULES //

var Complex128 = require( '@stdlib/complex/float64' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var constructorName = require( '@stdlib/utils/constructor-name' );


Expand All @@ -33,7 +33,7 @@ var constructorName = require( '@stdlib/utils/constructor-name' );
* @returns {boolean} boolean indicating if a value is a 128-bit complex number
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
*
* var x = new Complex128( 4.0, 2.0 );
*
Expand Down
Loading

0 comments on commit 8c8f743

Please sign in to comment.