You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[`7add020`](https://github.com/stdlib-js/stdlib/commit/7add0201c13e56a0381926ccfd4073c84eaf2ed4) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
39
+
-[`07f7c05`](https://github.com/stdlib-js/stdlib/commit/07f7c0522c73e6ad9505e1d45035ae439344200d) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
40
+
-[`6eee151`](https://github.com/stdlib-js/stdlib/commit/6eee15199727d04e3757e66f38384e97b8a333da) - **style:** fix indentation in JSON files _(by Philipp Burckhardt)_
37
41
-[`fd9f8d2`](https://github.com/stdlib-js/stdlib/commit/fd9f8d2b7cb5d4a8c7f2a9cef97e7a0b246523f6) - **chore:** fix C lint errors [(#7769)](https://github.com/stdlib-js/stdlib/pull/7769)_(by GeoDaoyu)_
38
42
-[`7536870`](https://github.com/stdlib-js/stdlib/commit/75368709f4bdeb91221d08492b5a0bc9c94f5b71) - **docs:** fix example and update docs _(by Athan Reines)_
39
43
-[`f22a9ab`](https://github.com/stdlib-js/stdlib/commit/f22a9ab1c1c50aacc3529b77401469c915f79aaf) - **fix:** ensure support for allocating zero-dimensional ndarrays _(by Athan Reines)_
@@ -49,10 +53,11 @@ This release closes the following issue:
49
53
50
54
### Contributors
51
55
52
-
A total of 2 people contributed to this release. Thank you to the following contributors:
56
+
A total of 3 people contributed to this release. Thank you to the following contributors:
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -316,11 +316,11 @@ var dtype = arr.dtype;
316
316
317
317
#### ndarray.prototype.flags
318
318
319
-
Meta information, such as information regarding the memory layout of the array. The returned `object` has the following properties:
319
+
Meta information, such as information regarding the memory layout of the array. The returned object has the following properties:
320
320
321
-
-**ROW_MAJOR_CONTIGUOUS**: `boolean` indicating if an array is row-major contiguous.
322
-
-**COLUMN_MAJOR_CONTIGUOUS**: `boolean` indicating if an array is column-major contiguous.
323
-
-**READONLY**: `boolean` indicating whether an array is **read-only**.
321
+
-**ROW_MAJOR_CONTIGUOUS**: boolean indicating if an array is row-major contiguous.
322
+
-**COLUMN_MAJOR_CONTIGUOUS**: boolean indicating if an array is column-major contiguous.
323
+
-**READONLY**: boolean indicating whether an array is **read-only**.
324
324
325
325
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]`).
0 commit comments