Skip to content

Commit 6d47b41

Browse files
committed
Auto-generated commit
1 parent 9383de7 commit 6d47b41

File tree

7 files changed

+19
-8
lines changed

7 files changed

+19
-8
lines changed

.gitignore

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,12 @@ jsconfig.json
188188
# Other editor files #
189189
######################
190190
.idea/
191-
192-
# Cursor #
193-
##########
191+
.cursor
194192
.cursorignore
193+
.windsurfrules
194+
.clinerules
195+
196+
# AI coding agents #
197+
####################
198+
CLAUDE.md
199+
GEMINI.md

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

99
<section class="features">
1010

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

3737
<details>
3838

39+
- [`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)_
3940
- [`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)_
4041
- [`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)_
4142
- [`fdf0183`](https://github.com/stdlib-js/stdlib/commit/fdf01832bc9b4fd729fd9cc1ab13e22a651fcb36) - **docs:** update REPL namespace documentation [(#7874)](https://github.com/stdlib-js/stdlib/pull/7874) _(by stdlib-bot)_

CONTRIBUTORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Bruno Fenzl <brunofenzl@gmail.com>
4242
Bryan Elee <rxbryn@gmail.com>
4343
Chinmay Joshi <86140365+JawHawk@users.noreply.github.com>
4444
Christopher Dambamuromo <chridam@gmail.com>
45+
DUDHAT HEMIL PRAVINKUMAR <138382078+Hemil36@users.noreply.github.com>
4546
Dan Rose <danoftheroses@gmail.com>
4647
Daniel Hernandez Gomez <156333015+dhernandeez13@users.noreply.github.com>
4748
Daniel Killenberger <daniel.killenberger@gmail.com>
@@ -65,6 +66,7 @@ Frank Kovacs <fran70kk@gmail.com>
6566
GK Bishnoi <gkishan1kyt@gmail.com>
6667
GURU PRASAD SHARMA <168292003+GURUPRASADSHARMA@users.noreply.github.com>
6768
Gaurav <gaurav70380@gmail.com>
69+
Gaurav Kaushik <144526331+Gauravkaushik-1206@users.noreply.github.com>
6870
Gautam Kaushik <162317291+Kaushikgtm@users.noreply.github.com>
6971
Gautam sharma <gautamkrishnasharma1@gmail.com>
7072
GeoDaoyu <geodaoyu@foxmail.com>
@@ -189,6 +191,7 @@ Sivam Das <100067002+Sivam2313@users.noreply.github.com>
189191
Snehil Shah <snehilshah.989@gmail.com>
190192
Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
191193
Spandan Barve <contact@marsian.dev>
194+
Srinivas Batthula <srinivasbatthula05.official@gmail.com>
192195
Stephannie Jiménez Gacha <steff456@hotmail.com>
193196
Suhaib Ilahi <suhaib.elahi87@gmail.com>
194197
Suraj Kumar <125961509+kumarsuraj212003@users.noreply.github.com>

data/data.csv

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,8 @@ base.cadd,"var z = new Complex128( 5.0, 3.0 )\nvar out = base.cadd( z, z )\nvar
221221
base.cadd.assign,"var out = new Float64Array( 2 );\nbase.cadd.assign( 5.0, 3.0, -2.0, 1.0, out, 1, 0 )\n"
222222
base.cadd.strided,"var z1 = new Float64Array( [ 5.0, 3.0 ] );\nvar z2 = new Float64Array( [ -2.0, 1.0 ] );\nvar out = new Float64Array( 2 );\nbase.cadd.strided( z1, 1, 0, z2, 1, 0, out, 1, 0 )\n"
223223
base.caddf,"var z = new Complex64( 5.0, 3.0 )\nvar out = base.caddf( z, z )\nvar re = realf( out )\nvar im = imagf( out )\n"
224+
base.caddf.assign,"var out = new Float32Array( 2 );\nbase.caddf.assign( 5.0, 3.0, -2.0, 1.0, out, 1, 0 )\n"
225+
base.caddf.strided,"var z1 = new Float32Array( [ 5.0, 3.0 ] );\nvar z2 = new Float32Array( [ -2.0, 1.0 ] );\nvar out = new Float32Array( 2 );\nbase.caddf.strided( z1, 1, 0, z2, 1, 0, out, 1, 0 )\n"
224226
base.camelcase,"var out = base.camelcase( 'Hello World!' )\nout = base.camelcase( 'beep boop' )\n"
225227
base.capitalize,"var out = base.capitalize( 'beep' )\nout = base.capitalize( 'Boop' )\n"
226228
base.cbrt,"var y = base.cbrt( 64.0 )\ny = base.cbrt( 27.0 )\ny = base.cbrt( 0.0 )\ny = base.cbrt( -0.0 )\ny = base.cbrt( -9.0 )\ny = base.cbrt( NaN )\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)