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
Copy file name to clipboardExpand all lines: .editorconfig
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,6 @@ indent_style = tab
86
86
[*.{f,f.txt}]
87
87
indent_style = space
88
88
indent_size = 2
89
-
insert_final_newline = false
90
89
91
90
# Set properties for shell files:
92
91
[*.{sh,sh.txt}]
@@ -121,7 +120,7 @@ indent_style = tab
121
120
[*.{md,md.txt}]
122
121
indent_style = space
123
122
indent_size = 4
124
-
trim_trailing_whitespace = false
123
+
trim_trailing_whitespace = true # Note: this disables using two spaces to force a hard line break, which is permitted in Markdown. As we don't typically follow that practice (TMK), we should be safe to automatically trim.
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,6 @@
2
2
3
3
We are excited about your pull request, but unfortunately we are not accepting pull requests against this repository, as all development happens on the [main project repository](https://github.com/stdlib-js/stdlib). We kindly request that you submit this pull request against the [respective directory](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/dtypes) of the main repository where we’ll review and provide feedback.
4
4
5
-
If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions. You may also consult the [development guide](https://github.com/stdlib-js/stdlib/blob/develop/docs/development.md) for help on developing stdlib.
5
+
If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions. You may also consult the [development guide](https://github.com/stdlib-js/stdlib/blob/develop/docs/contributing/development.md) for help on developing stdlib.
6
6
7
7
We look forward to receiving your contribution! :smiley:
Copy file name to clipboardExpand all lines: CHANGELOG.md
+44Lines changed: 44 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,50 @@
2
2
3
3
> Package changelog.
4
4
5
+
<sectionclass="release"id="unreleased">
6
+
7
+
## Unreleased (2025-04-25)
8
+<
F438
/td>
9
+
<sectionclass="features">
10
+
11
+
### Features
12
+
13
+
-[`5edbc25`](https://github.com/stdlib-js/stdlib/commit/5edbc2524bf509bd0bbde5c6432c77f06e55a65d) - add index data type kinds
14
+
15
+
</section>
16
+
17
+
<!-- /.features -->
18
+
19
+
<sectionclass="commits">
20
+
21
+
### Commits
22
+
23
+
<details>
24
+
25
+
-[`5edbc25`](https://github.com/stdlib-js/stdlib/commit/5edbc2524bf509bd0bbde5c6432c77f06e55a65d) - **feat:** add index data type kinds _(by Athan Reines)_
26
+
27
+
</details>
28
+
29
+
</section>
30
+
31
+
<!-- /.commits -->
32
+
33
+
<sectionclass="contributors">
34
+
35
+
### Contributors
36
+
37
+
A total of 1 person contributed to this release. Thank you to this contributor:
Copy file name to clipboardExpand all lines: README.md
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -117,6 +117,11 @@ The function supports the following data type kinds:
117
117
-`real`: real-valued data types.
118
118
-`numeric`: numeric data types.
119
119
-`typed`: typed data types.
120
+
-`integer_index`: integer index data types.
121
+
-`boolean_index`: boolean index data types.
122
+
-`mask_index`: mask index data types.
123
+
-`typed_index`: typed index data types.
124
+
-`index`: index data types.
120
125
-`all`: all data types.
121
126
122
127
Additionally, the function supports extending the "kinds" listed above by appending an `_and_generic` suffix to the kind name (e.g., `real_and_generic`).
@@ -218,7 +223,7 @@ See [LICENSE][stdlib-license].
0 commit comments