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 Jun 22, 2024
1 parent c84d60a commit 6b67a1a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 18 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-06-05)
## Unreleased (2024-06-22)

<section class="features">

Expand Down Expand Up @@ -38,6 +38,7 @@

<details>

- [`61c5609`](https://github.com/stdlib-js/stdlib/commit/61c5609ba30f3b07cd97089746a5dca25a614d94) - **docs:** fix examples in REPL documentation for complex number arrays [(#2431)](https://github.com/stdlib-js/stdlib/pull/2431) _(by Jaysukh Makvana)_
- [`cc06b5c`](https://github.com/stdlib-js/stdlib/commit/cc06b5c8c67a1c8d1022920273535b29e5abf550) - **fix:** add missing generic parameter _(by Athan Reines)_
- [`9dd3673`](https://github.com/stdlib-js/stdlib/commit/9dd3673c96b4b77d9cbc377bf2c551636b8c4dff) - **docs:** add `repl.txt` to `array/complex64` [(#2275)](https://github.com/stdlib-js/stdlib/pull/2275) _(by Jaysukh Makvana, Athan Reines)_
- [`3a3b1e0`](https://github.com/stdlib-js/stdlib/commit/3a3b1e08f73a54c5ee46d73045805aee0bb1196d) - **docs:** update package URLs [(##2269)](#2269) _(by stdlib-bot)_
Expand Down
3 changes: 2 additions & 1 deletion CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ Pushpendra Chandravanshi <pushpendrachandravanshi4@gmail.com>
Raunak Kumar Gupta <raunakmodanwal321@gmail.com>
Rejoan Sardar <119718513+Rejoan-Sardar@users.noreply.github.com>
Ricky Reusser <rsreusser@gmail.com>
Ridam Garg <67867319+RidamGarg@users.noreply.github.com>
Robert Gislason <gztown2216@yahoo.com>
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
Rutam <138517416+performant23@users.noreply.github.com>
Expand All @@ -75,7 +76,7 @@ Shraddheya Shendre <shendreshraddheya@gmail.com>
Shubh Mehta <93862397+Shubh942@users.noreply.github.com>
Shubham Mishra <shubh622005@gmail.com>
Sivam Das <100067002+Sivam2313@users.noreply.github.com>
Snehil Shah <130062020+Snehil-Shah@users.noreply.github.com>
Snehil Shah <snehilshah.989@gmail.com>
Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
Spandan Barve <contact@marsian.dev>
Stephannie Jiménez Gacha <steff456@hotmail.com>
Expand Down
30 changes: 15 additions & 15 deletions docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
<Complex64Array>
> var len = arr1.length
2
> var buf = [ new {{alias:@stdlib/complex/float32/ctor}}( 1.0, -1.0 ), new {{alias:@stdlib/complex/float32/ctor}}( 2.0, -2.0 )]
> var buf = [ new {{alias:@stdlib/complex/float32/ctor}}( 1.0, -1.0 ), new {{alias:@stdlib/complex/float32/ctor}}( 2.0, -2.0 )];
> var arr2 = new {{alias}}( buf )
<Complex64Array>
> len = arr2.length
Expand Down Expand Up @@ -211,8 +211,8 @@
<Complex64Array>
> var len = arr.length
2
> var z1 = new {{alias:@stdlib/complex/float32/ctor}}( 1.0, -1.0 )
> var z2 = new {{alias:@stdlib/complex/float32/ctor}}( 2.0, -2.0 )
> var z1 = new {{alias:@stdlib/complex/float32/ctor}}( 1.0, -1.0 );
> var z2 = new {{alias:@stdlib/complex/float32/ctor}}( 2.0, -2.0 );
> arr = {{alias}}.of( z1, z2 )
<Complex64Array>
> len = arr.length
Expand Down Expand Up @@ -275,7 +275,7 @@
<Complex64Array>
> var offset = arr.byteOffset
0
> var buf = new {{alias:@stdlib/array/buffer}}( 240 )
> var buf = new {{alias:@stdlib/array/buffer}}( 240 );
> arr = new {{alias}}( buf, 64 )
<Complex64Array>
> offset = arr.byteOffset
Expand Down Expand Up @@ -428,7 +428,7 @@

Examples
--------
> function predicate( v ) { return ( {{alias:@stdlib/complex/realf}}( v ) > 0.0 ); }
> function predicate( v ) { return ( {{alias:@stdlib/complex/realf}}( v ) > 0.0 ); };
> var arr = new {{alias}}( [ 1.0, -1.0, 2.0, -2.0 ] )
<Complex64Array>
> var bool = arr.every( predicate )
Expand Down Expand Up @@ -510,7 +510,7 @@

Examples
--------
> function predicate( v ) { return ( {{alias:@stdlib/complex/realf}}( v ) === {{alias:@stdlib/complex/imagf}}( v ) ); }
> function predicate( v ) { return ( {{alias:@stdlib/complex/realf}}( v ) === {{alias:@stdlib/complex/imagf}}( v ) ); };
> var arr = new {{alias}}( [ 1.0, -1.0, 2.0, 2.0, 3.0, -3.0 ] )
<Complex64Array>
> var out = arr.filter( predicate )
Expand Down Expand Up @@ -553,7 +553,7 @@

Examples
--------
> function predicate( v ) { return ( {{alias:@stdlib/complex/realf}}( v ) === {{alias:@stdlib/complex/imagf}}( v ) ); }
> function predicate( v ) { return ( {{alias:@stdlib/complex/realf}}( v ) === {{alias:@stdlib/complex/imagf}}( v ) ); };
> var arr = new {{alias}}( [ 1.0, 1.0, 2.0, 2.0, 3.0, -3.0 ] )
<Complex64Array>
> var z = arr.find( predicate )
Expand Down Expand Up @@ -592,7 +592,7 @@

Examples
--------
> function predicate( v ) { return ( {{alias:@stdlib/complex/realf}}( v ) === {{alias:@stdlib/complex/imagf}}( v ) ); }
> function predicate( v ) { return ( {{alias:@stdlib/complex/realf}}( v ) === {{alias:@stdlib/complex/imagf}}( v ) ); };
> var arr = new {{alias}}( [ 1.0, 1.0, 2.0, 2.0, 3.0, -3.0 ] )
<Complex64Array>
> var idx = arr.findIndex( predicate )
Expand Down Expand Up @@ -627,7 +627,7 @@

Examples
--------
> function predicate( v ) { return ( {{alias:@stdlib/complex/realf}}( v ) === {{alias:@stdlib/complex/imagf}}( v ) ); }
> function predicate( v ) { return ( {{alias:@stdlib/complex/realf}}( v ) === {{alias:@stdlib/complex/imagf}}( v ) ); };
> var arr = new {{alias}}( [ 1.0, 1.0, 2.0, 2.0, 3.0, -3.0 ] )
<Complex64Array>
> var z = arr.findLast( predicate )
Expand Down Expand Up @@ -666,7 +666,7 @@

Examples
--------
> function predicate( v ) { return ( {{alias:@stdlib/complex/realf}}( v ) === {{alias:@stdlib/complex/imagf}}( v ) ); }
> function predicate( v ) { return ( {{alias:@stdlib/complex/realf}}( v ) === {{alias:@stdlib/complex/imagf}}( v ) ); };
> var arr = new {{alias}}( [ 1.0, 1.0, 2.0, 2.0, 3.0, -3.0 ] )
<Complex64Array>
> var idx = arr.findLastIndex( predicate )
Expand All @@ -693,7 +693,7 @@
Examples
--------
> var str = '%';
> function clbk( v ) { str += v.toString() + '%'; }
> function clbk( v ) { str += v.toString() + '%'; };
> var arr = new {{alias}}( [ 1.0, -1.0, 2.0, -2.0 ] )
<Complex64Array>
> arr.forEach( clbk );
Expand Down Expand Up @@ -889,7 +889,7 @@

Examples
--------
> function clbk( v ) { return v; }
> function clbk( v ) { return v; };
> var arr = new {{alias}}( [ 1.0, -1.0, 2.0, -2.0 ] )
<Complex64Array>
> var out = arr.map( clbk )
Expand Down Expand Up @@ -1137,7 +1137,7 @@

Examples
--------
> function predicate( v ) { return ( {{alias:@stdlib/complex/realf}}( v ) === {{alias:@stdlib/complex/imagf}}( v ) ); }
> function predicate( v ) { return ( {{alias:@stdlib/complex/realf}}( v ) === {{alias:@stdlib/complex/imagf}}( v ) ); };
> var arr = new {{alias}}( [ 1.0, -1.0, 2.0, 2.0, 3.0, -3.0 ] )
<Complex64Array>
> var bool = arr.some( predicate )
Expand Down Expand Up @@ -1169,7 +1169,7 @@

Examples
--------
> function compare( a, b ) { return ( {{alias:@stdlib/complex/realf}}( a ) - {{alias:@stdlib/complex/realf}}( b ) ); }
> function compare( a, b ) { return ( {{alias:@stdlib/complex/realf}}( a ) - {{alias:@stdlib/complex/realf}}( b ) ); };
> var arr = new {{alias}}( [ 2.0, -2.0, 3.0, -3.0, 1.0, -1.0 ] )
<Complex64Array>
> arr.sort( compare );
Expand Down Expand Up @@ -1317,7 +1317,7 @@

Examples
--------
> function compare( a, b ) { return ( {{alias:@stdlib/complex/realf}}( a ) - {{alias:@stdlib/complex/realf}}( b ) ); }
> function compare( a, b ) { return ( {{alias:@stdlib/complex/realf}}( a ) - {{alias:@stdlib/complex/realf}}( b ) ); };
> var arr = new {{alias}}( [ 2.0, -2.0, 3.0, -3.0, 1.0, -1.0 ] )
<Complex64Array>
> var out = arr.toSorted( compare );
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@stdlib/assert-is-object": "^0.2.1",
"@stdlib/assert-is-string": "^0.2.1",
"@stdlib/assert-is-string-array": "^0.2.1",
"@stdlib/complex-float32-ctor": "github:stdlib-js/complex-float32-ctor#main",
"@stdlib/complex-float32-ctor": "^0.0.1",
"@stdlib/complex-imagf": "^0.2.1",
"@stdlib/complex-realf": "^0.2.1",
"@stdlib/math-base-assert-is-even": "^0.2.2",
Expand Down

0 comments on commit 6b67a1a

Please sign in to comment.