Skip to content

Commit c263909

Browse files
committed
Auto-generated commit
1 parent c3b247e commit c263909

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
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-03-23)
7+
## Unreleased (2025-03-24)
88

99
<section class="features">
1010

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

3737
<details>
3838

39+
- [`1aa6f0f`](https://github.com/stdlib-js/stdlib/commit/1aa6f0f0ca8b33af12fea9d5546ee7f88aea4045) - **docs:** update REPL namespace documentation [(#6338)](https://github.com/stdlib-js/stdlib/pull/6338) _(by stdlib-bot)_
3940
- [`3d9933c`](https://github.com/stdlib-js/stdlib/commit/3d9933c64e0b7bb95251b3425b046cf0af8036b2) - **docs:** update REPL namespace documentation [(#6316)](https://github.com/stdlib-js/stdlib/pull/6316) _(by stdlib-bot)_
4041
- [`00916fc`](https://github.com/stdlib-js/stdlib/commit/00916fc1f851438250f7510b2c2aace9ff4e0465) - **docs:** update REPL namespace documentation [(#6174)](https://github.com/stdlib-js/stdlib/pull/6174) _(by stdlib-bot)_
4142
- [`0541591`](https://github.com/stdlib-js/stdlib/commit/05415910493815ffb89a74df1ea55b83df3edf64) - **docs:** update REPL namespace documentation [(#6107)](https://github.com/stdlib-js/stdlib/pull/6107) _(by stdlib-bot)_

CONTRIBUTORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Contributors listed in alphabetical order.
44

55
Aadish Jain <jain.aadishj@gmail.com>
6+
Aarya Balwadkar <142713127+AaryaBalwadkar@users.noreply.github.com>
67
Aayush Khanna <aayushiitbhu23@gmail.com>
78
Abdelrahman Samir <60700731+abdelrahman04@users.noreply.github.com>
89
Abdul Kaium <97376242+impawstarlight@users.noreply.github.com>
@@ -77,6 +78,7 @@ Justyn Shelby <96994781+ShelbyJustyn@users.noreply.github.com>
7778
Karan Anand <119553199+anandkaranubc@users.noreply.github.com>
7879
Karthik Prakash <116057817+skoriop@users.noreply.github.com>
7980
Kaushikgtm <162317291+Kaushikgtm@users.noreply.github.com>
81+
Kavyansh-Bagdi <153486713+Kavyansh-Bagdi@users.noreply.github.com>
8082
Kohantika Nath <145763549+kohantikanath@users.noreply.github.com>
8183
Krishnam Agarwal <83017176+888krishnam@users.noreply.github.com>
8284
Krishnendu Das <86651039+itskdhere@users.noreply.github.com>
@@ -104,6 +106,7 @@ Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
104106
Oneday12323 <107678750+Oneday12323@users.noreply.github.com>
105107
Ori Miles <97595296+orimiles5@users.noreply.github.com>
106108
Philipp Burckhardt <pburckhardt@outlook.com>
109+
Prajjwal Bajpai <142303989+prajjwalbajpai@users.noreply.github.com>
107110
Prajwal Kulkarni <prajwalkulkarni76@gmail.com>
108111
Pranav Goswami <pranavchiku11@gmail.com>
109112
Pranjal Jha <97080887+PraneGIT@users.noreply.github.com>

data/data.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4161,6 +4161,7 @@ ndat,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nndat( x, 0, 1 )\nndat( x, 1, 0 )
41614161
ndempty,"var arr = ndempty( [ 2, 2 ] )\nvar sh = arr.shape\nvar dt = arr.dtype\n"
41624162
ndemptyLike,"var x = base.ndzeros( 'float64', [ 2, 2 ], 'row-major' )\nvar sh = x.shape\nvar dt = x.dtype\nvar y = ndemptyLike( x )\nsh = y.shape\ndt = y.dtype\n"
41634163
ndfill,"var opts = { 'dtype': 'float64' };\nvar x = ndzeros( [ 2, 2 ], opts );\nx.get( 0, 0 )\nndfill( x, 10.0 );\nx.get( 0, 0 )\n"
4164+
ndfillBy,"var opts = { 'dtype': 'float64' };\nvar x = ndzeros( [ 2, 2 ], opts );\nx.get( 0, 0 )\nfunction fcn() { return 10.0; };\nndfillBy( x, fcn );\nx.get( 0, 0 )\nx.get( 0, 1 )\nx.get( 1, 0 )\nx.get( 1, 1 )\n"
41644165
ndfilter,"var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );\nfunction f( v ) { return v > 2.0; };\nvar y = ndfilter( x, f );\nndarray2array( y )\n"
41654166
ndfilterMap,"var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );\nfunction f( v ) { if ( v > 2.0 ) { return v * 10.0; } };\nvar y = ndfilterMap( x, f );\nndarray2array( y )\n"
41664167
ndforEach,"var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );\nfunction f( v ) { if ( v !== v ) { throw new Error( '...' ); } };\nndforEach( x, f );\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)