Skip to content

Commit 54aa41e

Browse files
committed
Auto-generated commit
1 parent 34a23e3 commit 54aa41e

File tree

5 files changed

+20
-10
lines changed

5 files changed

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

99
<section class="features">
1010

@@ -33,6 +33,7 @@
3333

3434
<details>
3535

36+
- [`a3e7978`](https://github.com/stdlib-js/stdlib/commit/a3e79786217bf1c9a84875203251af82cc93a222) - **docs:** update markup _(by Athan Reines)_
3637
- [`7add020`](https://github.com/stdlib-js/stdlib/commit/7add0201c13e56a0381926ccfd4073c84eaf2ed4) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
3738
- [`b2cefbe`](https://github.com/stdlib-js/stdlib/commit/b2cefbe2b2192cb705b85c43ffac2f57ca782c42) - **feat:** add custom `valueOf` method _(by Athan Reines)_
3839
- [`7321e29`](https://github.com/stdlib-js/stdlib/commit/7321e294d995d496b35f24f253055190ae6a78d5) - **refactor:** use base assertion utility _(by Athan Reines)_

CONTRIBUTORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Anmol Sah <113588714+anmolsah@users.noreply.github.com>
2929
Annamalai Prabu <apfossdev@gmail.com>
3030
Anshu Kumar <132515490+anxhukumar@users.noreply.github.com>
3131
Anshu Kumar <contact.anshukumar@protonmail.com>
32+
Anshumancanrock <109489361+Anshumancanrock@users.noreply.github.com>
3233
Anudeep Sanapala <anudeep0306@gmail.com>
3334
Arihant Pal <arihant0pal@gmail.com>
3435
Aryan Bhirud <112156883+AryanBhirud@users.noreply.github.com>
@@ -42,6 +43,7 @@ Bruno Fenzl <brunofenzl@gmail.com>
4243
Bryan Elee <rxbryn@gmail.com>
4344
Chinmay Joshi <86140365+JawHawk@users.noreply.github.com>
4445
Christopher Dambamuromo <chridam@gmail.com>
46+
DUDHAT HEMIL PRAVINKUMAR <138382078+Hemil36@users.noreply.github.com>
4547
Dan Rose <danoftheroses@gmail.com>
4648
Daniel Hernandez Gomez <156333015+dhernandeez13@users.noreply.github.com>
4749
Daniel Killenberger <daniel.killenberger@gmail.com>
@@ -65,6 +67,7 @@ Frank Kovacs <fran70kk@gmail.com>
6567
GK Bishnoi <gkishan1kyt@gmail.com>
6668
GURU PRASAD SHARMA <168292003+GURUPRASADSHARMA@users.noreply.github.com>
6769
Gaurav <gaurav70380@gmail.com>
70+
Gaurav Kaushik <144526331+Gauravkaushik-1206@users.noreply.github.com>
6871
Gautam Kaushik <162317291+Kaushikgtm@users.noreply.github.com>
6972
Gautam sharma <gautamkrishnasharma1@gmail.com>
7073
GeoDaoyu <geodaoyu@foxmail.com>
@@ -179,6 +182,7 @@ Saurabh Singh <saurabhsraghuvanshi@gmail.com>
179182
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
180183
Shabareesh Shetty <139731143+ShabiShett07@users.noreply.github.com>
181184
Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
185+
Shaswata Panda <106397517+shaswata-26@users.noreply.github.com>
182186
Shivam Ahir <11shivam00@gmail.com>
183187
Shivansh <114570926+shiv343@users.noreply.github.com>
184188
Shraddheya Shendre <shendreshraddheya@gmail.com>
@@ -199,6 +203,7 @@ Tirtadwipa Manunggal <tirtadwipa.manunggal@gmail.com>
199203
Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com>
200204
Tufailahmed Bargir <142114244+Tufailahmed-Bargir@users.noreply.github.com>
201205
Tushar Bhardwaj <155543597+TusharBhardwaj441@users.noreply.github.com>
206+
Tyson Cung <45380903+tysoncung@users.noreply.github.com>
202207
Uday Kakade <141299403+udaykakade25@users.noreply.github.com>
203208
Ujjwal Kirti <64329707+ujjwalkirti@users.noreply.github.com>
204209
Utkarsh <http://utkarsh11105@gmail.com>

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -269,11 +269,11 @@ var dtype = arr.dtype;
269269

270270
#### ndarray.prototype.flags
271271

272-
Meta information, such as information concerning the memory layout of the array. The returned `object` has the following properties:
272+
Meta information, such as information concerning the memory layout of the array. The returned object has the following properties:
273273

274-
- **ROW_MAJOR_CONTIGUOUS**: `boolean` indicating if an array is row-major contiguous.
275-
- **COLUMN_MAJOR_CONTIGUOUS**: `boolean` indicating if an array is column-major contiguous.
276-
- **READONLY**: `boolean` indicating if an array is **read-only**.
274+
- **ROW_MAJOR_CONTIGUOUS**: boolean indicating if an array is row-major contiguous.
275+
- **COLUMN_MAJOR_CONTIGUOUS**: boolean indicating if an array is column-major contiguous.
276+
- **READONLY**: boolean indicating if an array is **read-only**.
277277

278278
An array is contiguous if (1) an array is compatible with being stored in a single memory segment and (2) each array element is adjacent to the next array element. Note that an array can be both row-major contiguous and column-major contiguous at the same time (e.g., if an array is a 1-dimensional ndarray with `strides = [1]`).
279279

@@ -571,7 +571,7 @@ The method does **not** serialize data outside of the buffer region defined by t
571571

572572
#### ndarray.prototype.toJSON()
573573

574-
Serializes an `ndarray` as a [JSON][json] `object`. `JSON.stringify()` implicitly calls this method when stringifying an `ndarray` instance.
574+
Serializes an `ndarray` as a [JSON][json] object. `JSON.stringify()` implicitly calls this method when stringifying an `ndarray` instance.
575575

576576
```javascript
577577
// Specify the array configuration:

0 commit comments

Comments
 (0)