Skip to content

Commit e5344d7

Browse files
committed
Auto-generated commit
1 parent 48224f5 commit e5344d7

File tree

4 files changed

+21
-19
lines changed

4 files changed

+21
-19
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-06-05)
7+
## Unreleased (2024-06-22)
88

99
<section class="features">
1010

@@ -37,6 +37,7 @@
3737

3838
<details>
3939

40+
- [`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)_
4041
- [`f53180b`](https://github.com/stdlib-js/stdlib/commit/f53180b3c431857d7c918319da97bd8e3abcb216) - **fix:** add missing parameter _(by Athan Reines)_
4142
- [`1cc1a57`](https://github.com/stdlib-js/stdlib/commit/1cc1a5727ea8a024c597d7c8bc724f027511da78) - **docs:** add `repl.txt` to `array/complex128` [(#2280)](https://github.com/stdlib-js/stdlib/pull/2280) _(by Jaysukh Makvana, Athan Reines)_
4243
- [`3a3b1e0`](https://github.com/stdlib-js/stdlib/commit/3a3b1e08f73a54c5ee46d73045805aee0bb1196d) - **docs:** update package URLs [(##2269)](#2269) _(by stdlib-bot)_

CONTRIBUTORS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ Pushpendra Chandravanshi <pushpendrachandravanshi4@gmail.com>
6363
Raunak Kumar Gupta <raunakmodanwal321@gmail.com>
6464
Rejoan Sardar <119718513+Rejoan-Sardar@users.noreply.github.com>
6565
Ricky Reusser <rsreusser@gmail.com>
66+
Ridam Garg <67867319+RidamGarg@users.noreply.github.com>
6667
Robert Gislason <gztown2216@yahoo.com>
6768
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
6869
Rutam <138517416+performant23@users.noreply.github.com>
@@ -75,7 +76,7 @@ Shraddheya Shendre <shendreshraddheya@gmail.com>
7576
Shubh Mehta <93862397+Shubh942@users.noreply.github.com>
7677
Shubham Mishra <shubh622005@gmail.com>
7778
Sivam Das <100067002+Sivam2313@users.noreply.github.com>
78-
Snehil Shah <130062020+Snehil-Shah@users.noreply.github.com>
79+
Snehil Shah <snehilshah.989@gmail.com>
7980
Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
8081
Spandan Barve <contact@marsian.dev>
8182
Stephannie Jiménez Gacha <steff456@hotmail.com>

docs/repl.txt

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
<Complex128Array>
102102
> var len = arr1.length
103103
2
104-
> var buf = [ new {{alias:@stdlib/complex/float64/ctor}}( 1.0, -1.0 ), new {{alias:@stdlib/complex/float64/ctor}}( 2.0, -2.0 ) ]
104+
> var buf = [ new {{alias:@stdlib/complex/float64/ctor}}( 1.0, -1.0 ), new {{alias:@stdlib/complex/float64/ctor}}( 2.0, -2.0 ) ];
105105
> var arr2 = new {{alias}}( buf )
106106
<Complex128Array>
107107
> len = arr2.length
@@ -212,8 +212,8 @@
212212
<Complex128Array>
213213
> var len = arr.length
214214
2
215-
> var z1 = new {{alias:@stdlib/complex/float64/ctor}}( 1.0, -1.0 )
216-
> var z2 = new {{alias:@stdlib/complex/float64/ctor}}( 2.0, -2.0 )
215+
> var z1 = new {{alias:@stdlib/complex/float64/ctor}}( 1.0, -1.0 );
216+
> var z2 = new {{alias:@stdlib/complex/float64/ctor}}( 2.0, -2.0 );
217217
> arr = {{alias}}.of( z1, z2 )
218218
<Complex128Array>
219219
> len = arr.length
@@ -276,7 +276,7 @@
276276
<Complex128Array>
277277
> var offset = arr.byteOffset
278278
0
279-
> var buf = new {{alias:@stdlib/array/buffer}}( 480 )
279+
> var buf = new {{alias:@stdlib/array/buffer}}( 480 );
280280
> arr = new {{alias}}( buf, 128 )
281281
<Complex128Array>
282282
> offset = arr.byteOffset
@@ -429,7 +429,7 @@
429429

430430
Examples
431431
--------
432-
> function predicate( v ) { return ( {{alias:@stdlib/complex/real}}( v ) > 0.0 ); }
432+
> function predicate( v ) { return ( {{alias:@stdlib/complex/real}}( v ) > 0.0 ); };
433433
> var arr = new {{alias}}( [ 1.0, -1.0, 2.0, -2.0 ] )
434434
<Complex128Array>
435435
> var bool = arr.every( predicate )
@@ -511,7 +511,7 @@
511511

512512
Examples
513513
--------
514-
> function predicate( v ) { return ( {{alias:@stdlib/complex/real}}( v ) === {{alias:@stdlib/complex/imag}}( v ) ); }
514+
> function predicate( v ) { return ( {{alias:@stdlib/complex/real}}( v ) === {{alias:@stdlib/complex/imag}}( v ) ); };
515515
> var arr = new {{alias}}( [ 1.0, -1.0, 2.0, 2.0, 3.0, -3.0 ] )
516516
<Complex128Array>
517517
> var out = arr.filter( predicate )
@@ -554,7 +554,7 @@
554554

555555
Examples
556556
--------
557-
> function predicate( v ) { return ( {{alias:@stdlib/complex/real}}( v ) === {{alias:@stdlib/complex/imag}}( v ) ); }
557+
> function predicate( v ) { return ( {{alias:@stdlib/complex/real}}( v ) === {{alias:@stdlib/complex/imag}}( v ) ); };
558558
> var arr = new {{alias}}( [ 1.0, 1.0, 2.0, 2.0, 3.0, -3.0 ] )
559559
<Complex128Array>
560560
> var z = arr.find( predicate )
@@ -593,7 +593,7 @@
593593

594594
Examples
595595
--------
596-
> function predicate( v ) { return ( {{alias:@stdlib/complex/real}}( v ) === {{alias:@stdlib/complex/imag}}( v ) ); }
596+
> function predicate( v ) { return ( {{alias:@stdlib/complex/real}}( v ) === {{alias:@stdlib/complex/imag}}( v ) ); };
597597
> var arr = new {{alias}}( [ 1.0, 1.0, 2.0, 2.0, 3.0, -3.0 ] )
598598
<Complex128Array>
599599
> var idx = arr.findIndex( predicate )
@@ -628,7 +628,7 @@
628628

629629
Examples
630630
--------
631-
> function predicate( v ) { return ( {{alias:@stdlib/complex/real}}( v ) === {{alias:@stdlib/complex/imag}}( v ) ); }
631+
> function predicate( v ) { return ( {{alias:@stdlib/complex/real}}( v ) === {{alias:@stdlib/complex/imag}}( v ) ); };
632632
> var arr = new {{alias}}( [ 1.0, 1.0, 2.0, 2.0, 3.0, -3.0 ] )
633633
<Complex128Array>
634634
> var z = arr.findLast( predicate )
@@ -667,7 +667,7 @@
667667

668668
Examples
669669
--------
670-
> function predicate( v ) { return ( {{alias:@stdlib/complex/real}}( v ) === {{alias:@stdlib/complex/imag}}( v ) ); }
670+
> function predicate( v ) { return ( {{alias:@stdlib/complex/real}}( v ) === {{alias:@stdlib/complex/imag}}( v ) ); };
671671
> var arr = new {{alias}}( [ 1.0, 1.0, 2.0, 2.0, 3.0, -3.0 ] )
672672
<Complex128Array>
673673
> var idx = arr.findLastIndex( predicate )
@@ -694,7 +694,7 @@
694694
Examples
695695
--------
696696
> var str = '%';
697-
> function clbk( v ) { str += v.toString() + '%'; }
697+
> function clbk( v ) { str += v.toString() + '%'; };
698698
> var arr = new {{alias}}( [ 1.0, -1.0, 2.0, -2.0 ] )
699699
<Complex128Array>
700700
> arr.forEach( clbk );
@@ -890,7 +890,7 @@
890890

891891
Examples
892892
--------
893-
> function clbk( v ) { return v; }
893+
> function clbk( v ) { return v; };
894894
> var arr = new {{alias}}( [ 1.0, -1.0, 2.0, -2.0 ] )
895895
<Complex128Array>
896896
> var out = arr.map( clbk )
@@ -1138,7 +1138,7 @@
11381138

11391139
Examples
11401140
--------
1141-
> function predicate( v ) { return ( {{alias:@stdlib/complex/real}}( v ) === {{alias:@stdlib/complex/imag}}( v ) ); }
1141+
> function predicate( v ) { return ( {{alias:@stdlib/complex/real}}( v ) === {{alias:@stdlib/complex/imag}}( v ) ); };
11421142
> var arr = new {{alias}}( [ 1.0, -1.0, 2.0, 2.0, 3.0, -3.0 ] )
11431143
<Complex128Array>
11441144
> var bool = arr.some( predicate )
@@ -1170,7 +1170,7 @@
11701170

11711171
Examples
11721172
--------
1173-
> function compare( a, b ) { return ( {{alias:@stdlib/complex/real}}( a ) - {{alias:@stdlib/complex/real}}( b ) ); }
1173+
> function compare( a, b ) { return ( {{alias:@stdlib/complex/real}}( a ) - {{alias:@stdlib/complex/real}}( b ) ); };
11741174
> var arr = new {{alias}}( [ 2.0, -2.0, 3.0, -3.0, 1.0, -1.0 ] )
11751175
<Complex128Array>
11761176
> arr.sort( compare );
@@ -1318,7 +1318,7 @@
13181318

13191319
Examples
13201320
--------
1321-
> function compare( a, b ) { return ( {{alias:@stdlib/complex/real}}( a ) - {{alias:@stdlib/complex/real}}( b ) ); }
1321+
> function compare( a, b ) { return ( {{alias:@stdlib/complex/real}}( a ) - {{alias:@stdlib/complex/real}}( b ) ); };
13221322
> var arr = new {{alias}}( [ 2.0, -2.0, 3.0, -3.0, 1.0, -1.0 ] )
13231323
<Complex128Array>
13241324
> var out = arr.toSorted( compare );

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"@stdlib/assert-is-object": "^0.2.1",
5454
"@stdlib/assert-is-string": "^0.2.1",
5555
"@stdlib/assert-is-string-array": "^0.2.1",
56-
"@stdlib/complex-float64-ctor": "github:stdlib-js/complex-float64-ctor#main",
56+
"@stdlib/complex-float64-ctor": "^0.0.1",
5757
"@stdlib/complex-imag": "^0.2.1",
5858
"@stdlib/complex-real": "^0.2.1",
5959
"@stdlib/math-base-assert-is-even": "^0.2.2",
@@ -80,7 +80,7 @@
8080
"@stdlib/assert-is-iterator-like": "^0.2.1",
8181
"@stdlib/assert-is-negative-zero": "^0.2.1",
8282
"@stdlib/assert-is-positive-zero": "^0.2.1",
83-
"@stdlib/complex-float32-ctor": "github:stdlib-js/complex-float32-ctor#main",
83+
"@stdlib/complex-float32-ctor": "^0.0.1",
8484
"@stdlib/complex-imagf": "^0.2.1",
8585
"@stdlib/complex-realf": "^0.2.1",
8686
"@stdlib/console-log-each": "^0.2.1",

0 commit comments

Comments
 (0)