Skip to content

Commit f4a5ecd

Browse files
committed
Auto-generated commit
1 parent 6d47b41 commit f4a5ecd

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
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 (2025-09-08)
7+
## Unreleased (2025-09-13)
88

99
<section class="features">
1010

@@ -36,6 +36,7 @@
3636

3737
<details>
3838

39+
- [`bea5b86`](https://github.com/stdlib-js/stdlib/commit/bea5b867c7905e4fb8f1648e8fe8acc436f55e14) - **docs:** update REPL namespace documentation [(#8064)](https://github.com/stdlib-js/stdlib/pull/8064) _(by stdlib-bot)_
3940
- [`fe269e2`](https://github.com/stdlib-js/stdlib/commit/fe269e2a7c2ae9bff3868d4c8a7fce1cb64e2a88) - **docs:** update REPL namespace documentation [(#8040)](https://github.com/stdlib-js/stdlib/pull/8040) _(by stdlib-bot)_
4041
- [`c940d58`](https://github.com/stdlib-js/stdlib/commit/c940d5871c3e892cd67dd8fa2b1dbadd87465733) - **docs:** update REPL namespace documentation [(#7903)](https://github.com/stdlib-js/stdlib/pull/7903) _(by stdlib-bot)_
4142
- [`ca26c53`](https://github.com/stdlib-js/stdlib/commit/ca26c53f8ecdd292c1addd920a11210dc5af7d9d) - **docs:** update REPL namespace documentation [(#7891)](https://github.com/stdlib-js/stdlib/pull/7891) _(by stdlib-bot)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ Saurabh Singh <[email protected]>
181181
Seyyed Parsa Neshaei <[email protected]>
182182
Shabareesh Shetty <[email protected]>
183183
Shashank Shekhar Singh <[email protected]>
184+
Shaswata Panda <[email protected]>
184185
Shivam Ahir <[email protected]>
185186
186187
Shraddheya Shendre <[email protected]>

data/data.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
abs,"var y = abs( -1.0 )\nvar x = new Float64Array( [ -1.0, -2.0 ] );\ny = abs( x )\nx = [ -1.0, -2.0 ];\ny = abs( x )\nx = array( [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ] );\ny = abs( x )\ny.get( 0, 1 )\n"
2-
abs.assign,"var x = new Float64Array( [ -1.0, -2.0 ] );\nvar y = new Float64Array( x.length );\nvar out = abs.assign( x, y )\nvar bool = ( out === y )\nx = [ -1.0, -2.0 ];\ny = [ 0.0, 0.0 ];\nout = abs.assign( x, y )\nbool = ( out === y )\nx = array( [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ] );\ny = array( [ [ 0.0, 0.0 ], [ 0.0, 0.0 ] ] );\nout = abs.assign( x, y )\nout.get( 0, 1 )\nbool = ( out === y )\n"
1+
abs,"var arr = [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ];\nvar x = array( arr );\nvar y = abs( x );\nndarray2array( y )\n"
2+
abs.assign,"var arr = [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ];\nvar x = array( arr );\nvar sh = ndarrayShape( x );\nvar y = ndzeros( sh );\nvar out = abs.assign( x, y );\nvar bool = ( out === y )\nndarray2array( y )\n"
33
acartesianPower,"var x = [ 1, 2 ];\nvar out = acartesianPower( x, 2 )\n"
44
acartesianProduct,"var x1 = [ 1, 2 ];\nvar x2 = [ 3, 4 ];\nvar out = acartesianProduct( x1, x2 )\n"
55
acartesianSquare,"var out = acartesianSquare( [ 1, 2 ] )\n"

data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)