Skip to content

Commit 398335f

Browse files
committed
Auto-generated commit
1 parent b718468 commit 398335f

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

.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-18)
7+
## Unreleased (2025-09-10)
88

99
<section class="bug-fixes">
1010

@@ -25,6 +25,7 @@
2525

2626
<details>
2727

28+
- [`da9d08b`](https://github.com/stdlib-js/stdlib/commit/da9d08b99b9662e7421722b5c2af30f6bfb1bbf5) - **docs:** add missing require to TSDoc example code _(by Philipp Burckhardt)_
2829
- [`99be29d`](https://github.com/stdlib-js/stdlib/commit/99be29d87a59460302f43792e0f24b4dbe128dab) - **fix:** account for loop tiling when generating list of indices _(by Athan Reines)_
2930
- [`f10dd8c`](https://github.com/stdlib-js/stdlib/commit/f10dd8ccbd1c245467d156a1b87f5eb2ba47e0ad) - **fix:** use resolved order when computing loop variables _(by Athan Reines)_
3031
- [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_

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>

docs/types/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,12 @@ type Callback<T, U> = Nullary<U> | Unary<T, U> | Binary<T, U> | Ternary<T, U>;
6666
*
6767
* @param arrays - array-like object containing an output ndarray
6868
* @param fcn - callback function
69+
* @param thisArg - callback function execution context
6970
*
7071
* @example
7172
* var Float64Array = require( '@stdlib/array-float64' );
7273
* var naryFunction = require( '@stdlib/utils-nary-function' );
74+
* var ndarray = require( '@stdlib/ndarray-base-ctor' );
7375
* var log = require( '@stdlib/console-log' );
7476
*
7577
* // Create data buffers:

0 commit comments

Comments
 (0)