File tree Expand file tree Collapse file tree 17 files changed +238
-6
lines changed Expand file tree Collapse file tree 17 files changed +238
-6
lines changed Original file line number Diff line number Diff line change 38
38
timeout-minutes : 5
39
39
- name : Replace all GitHub links to individual packages with npm links
40
40
run : |
41
- find . -type f -name '*.md' -print0 | xargs -0 sed -Ei 's/@stdlib\/([^:]*)\]: https:\/\/github.com\/stdlib-js/@stdlib\/\1\]: https:\/\/www.npmjs.com\/package\/@stdlib/g'
41
+ find . -type f -name '*.md' -print0 | xargs -0 sed -Ei '/tree\/main/b; s/@stdlib\/([^:]*)\]: https:\/\/github.com\/stdlib-js/@stdlib\/\1\]: https:\/\/www.npmjs.com\/package\/@stdlib/g'
42
42
- name : Replace all stdlib GitHub dependencies with the respective npm packages
43
43
run : |
44
44
find package.json -type f -print0 | xargs -0 sed -Ei 's/"github:stdlib-js[^"]*"/"^0.0.x"/g'
Original file line number Diff line number Diff line change @@ -247,6 +247,12 @@ str = JSON.stringify( arr.toJSON() );
247
247
248
248
<section class =" related " >
249
249
250
+ * * *
251
+
252
+ ## See Also
253
+
254
+ - [ ` @stdlib/ndarray/ctor ` ] [ @stdlib/ndarray/ctor ] : multidimensional array constructor.
255
+
250
256
</section >
251
257
252
258
<!-- /.related -->
@@ -257,14 +263,18 @@ str = JSON.stringify( arr.toJSON() );
257
263
258
264
[ @stdlib/ndarray/dtypes ] : https://github.com/stdlib-js/ndarray/tree/main/dtypes
259
265
260
- [ @stdlib/ndarray/ctor ] : https://github.com/stdlib-js/ndarray/tree/main/ctor
261
-
262
266
[ @stdlib/array/generic ] : https://github.com/stdlib-js/array-generic
263
267
264
268
[ @stdlib/array/typed ] : https://github.com/stdlib-js/array-typed
265
269
266
270
[ @stdlib/buffer/ctor ] : https://github.com/stdlib-js/buffer-ctor
267
271
272
+ <!-- <related-links> -->
273
+
274
+ [ @stdlib/ndarray/ctor ] : https://github.com/stdlib-js/ndarray/tree/main/ctor
275
+
276
+ <!-- </related-links> -->
277
+
268
278
</section >
269
279
270
280
<!-- /.links -->
Original file line number Diff line number Diff line change @@ -643,6 +643,13 @@ str = JSON.stringify( arr.toJSON() );
643
643
644
644
<section class =" related " >
645
645
646
+ * * *
647
+
648
+ ## See Also
649
+
650
+ - [ ` @stdlib/ndarray/array ` ] [ @stdlib/ndarray/array ] : multidimensional arrays.
651
+ - [ ` @stdlib/ndarray/ctor ` ] [ @stdlib/ndarray/ctor ] : multidimensional array constructor.
652
+
646
653
</section >
647
654
648
655
<!-- /.related -->
@@ -659,6 +666,14 @@ str = JSON.stringify( arr.toJSON() );
659
666
660
667
[ @stdlib/array/complex128 ] : https://github.com/stdlib-js/array-complex128
661
668
669
+ <!-- <related-links> -->
670
+
671
+ [ @stdlib/ndarray/array ] : https://github.com/stdlib-js/ndarray/tree/main/array
672
+
673
+ [ @stdlib/ndarray/ctor ] : https://github.com/stdlib-js/ndarray/tree/main/ctor
674
+
675
+ <!-- </related-links> -->
676
+
662
677
</section >
663
678
664
679
<!-- /.links -->
Original file line number Diff line number Diff line change @@ -96,9 +96,9 @@ This package exposes various C APIs to facilitate the creation of Node-API ndarr
96
96
97
97
<!-- NOTE: please keep in alphabetical order -->
98
98
99
- - [ ` @stdlib/ndarray/base/napi/unary ` ] [ @stdlib/ndarray/base/napi/unary ] : https://github.com/stdlib-js /ndarray/tree/main/ base/napi/ unary`] [ @stdlib/ndarray /base/napi/ unary
100
- - [ ` @stdlib/ndarray/base/unary ` ] [ @stdlib/ndarray/base/unary ] : https://github.com/stdlib-js/ ndarray/tree/main/base/unary` ] [ @ stdlib/ ndarray/base/unary
101
- - [ ` @stdlib/ndarray/dtypes ` ] [ @stdlib/ndarray/dtypes ] : https://github.com/stdlib-js/ ndarray/tree/main/dtypes` ] [ @ stdlib/ndarray /dtypes
99
+ - [ ` @stdlib/ndarray/base/napi/unary ` ] [ @stdlib/ndarray/base/napi/unary ] : Node-API interfaces and macros for registering one or more [ ` @stdlib /ndarray/base/unary` ] [ @stdlib/ndarray/base/unary ] interfaces with support for multiple dispatch.
100
+ - [ ` @stdlib/ndarray/base/unary ` ] [ @stdlib/ndarray/base/unary ] : ndarray loops for operating on a single input ndarray and one or more output ndarrays.
101
+ - [ ` @stdlib/ndarray/dtypes ` ] [ @stdlib/ndarray/dtypes ] : supported ndarray data types.
102
102
103
103
For API documentation, consult the individual packages.
104
104
Original file line number Diff line number Diff line change @@ -3352,6 +3352,12 @@ int main() {
3352
3352
3353
3353
<section class="related">
3354
3354
3355
+ * * *
3356
+
3357
+ ## See Also
3358
+
3359
+ - [`@stdlib/ndarray/dispatch`][@stdlib/ndarray/dispatch]: create an ndarray function interface which performs multiple dispatch.
3360
+
3355
3361
</section>
3356
3362
3357
3363
<!-- /.related -->
@@ -3360,6 +3366,12 @@ int main() {
3360
3366
3361
3367
[mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
3362
3368
3369
+ <!-- <related-links> -->
3370
+
3371
+ [@stdlib/ndarray/dispatch]: https://github.com/stdlib-js/ndarray/tree/main/dispatch
3372
+
3373
+ <!-- </related-links> -->
3374
+
3363
3375
</section>
3364
3376
3365
3377
<!-- /.links -->
Original file line number Diff line number Diff line change @@ -126,6 +126,13 @@ bool = isMode( 'beep' );
126
126
127
127
<section class =" related " >
128
128
129
+ * * *
130
+
131
+ ## See Also
132
+
133
+ - [ ` @stdlib/ndarray/array ` ] [ @stdlib/ndarray/array ] : multidimensional arrays.
134
+ - [ ` @stdlib/ndarray/ctor ` ] [ @stdlib/ndarray/ctor ] : multidimensional array constructor.
135
+
129
136
</section >
130
137
131
138
<!-- /.related -->
@@ -134,6 +141,14 @@ bool = isMode( 'beep' );
134
141
135
142
<section class =" links " >
136
143
144
+ <!-- <related-links> -->
145
+
146
+ [ @stdlib/ndarray/array ] : https://github.com/stdlib-js/ndarray/tree/main/array
147
+
148
+ [ @stdlib/ndarray/ctor ] : https://github.com/stdlib-js/ndarray/tree/main/ctor
149
+
150
+ <!-- </related-links> -->
151
+
137
152
</section >
138
153
139
154
<!-- /.links -->
Original file line number Diff line number Diff line change @@ -251,6 +251,13 @@ console.log( ybuf );
251
251
252
252
<section class =" related " >
253
253
254
+ * * *
255
+
256
+ ## See Also
257
+
258
+ - [ ` @stdlib/ndarray/array ` ] [ @stdlib/ndarray/array ] : multidimensional arrays.
259
+ - [ ` @stdlib/ndarray/ctor ` ] [ @stdlib/ndarray/ctor ] : multidimensional array constructor.
260
+
254
261
</section >
255
262
256
263
<!-- /.related -->
@@ -259,8 +266,14 @@ console.log( ybuf );
259
266
260
267
<section class =" links " >
261
268
269
+ <!-- <related-links> -->
270
+
271
+ [ @stdlib/ndarray/array ] : https://github.com/stdlib-js/ndarray/tree/main/array
272
+
262
273
[ @stdlib/ndarray/ctor ] : https://github.com/stdlib-js/ndarray/tree/main/ctor
263
274
275
+ <!-- </related-links> -->
276
+
264
277
</section >
265
278
266
279
<!-- /.links -->
Original file line number Diff line number Diff line change @@ -128,6 +128,15 @@ bool = isdtype( 'beep' );
128
128
129
129
<section class =" related " >
130
130
131
+ * * *
132
+
133
+ ## See Also
134
+
135
+ - [ ` @stdlib/array/dtypes ` ] [ @stdlib/array/dtypes ] : list of array data types.
136
+ - [ ` @stdlib/ndarray/array ` ] [ @stdlib/ndarray/array ] : multidimensional arrays.
137
+ - [ ` @stdlib/ndarray/ctor ` ] [ @stdlib/ndarray/ctor ] : multidimensional array constructor.
138
+ - [ ` @stdlib/array/typed-dtypes ` ] [ @stdlib/array/typed-dtypes ] : list of typed array data types.
139
+
131
140
</section >
132
141
133
142
<!-- /.related -->
@@ -136,6 +145,18 @@ bool = isdtype( 'beep' );
136
145
137
146
<section class =" links " >
138
147
148
+ <!-- <related-links> -->
149
+
150
+ [ @stdlib/array/dtypes ] : https://github.com/stdlib-js/array-dtypes
151
+
152
+ [ @stdlib/ndarray/array ] : https://github.com/stdlib-js/ndarray/tree/main/array
153
+
154
+ [ @stdlib/ndarray/ctor ] : https://github.com/stdlib-js/ndarray/tree/main/ctor
155
+
156
+ [ @stdlib/array/typed-dtypes ] : https://github.com/stdlib-js/array-typed-dtypes
157
+
158
+ <!-- </related-links> -->
159
+
139
160
</section >
140
161
141
162
<!-- /.links -->
Original file line number Diff line number Diff line change @@ -181,6 +181,14 @@ for ( i = 0; i < len; i++ ) {
181
181
182
182
<section class =" related " >
183
183
184
+ * * *
185
+
186
+ ## See Also
187
+
188
+ - [ ` @stdlib/ndarray/array ` ] [ @stdlib/ndarray/array ] : multidimensional arrays.
189
+ - [ ` @stdlib/ndarray/ctor ` ] [ @stdlib/ndarray/ctor ] : multidimensional array constructor.
190
+ - [ ` @stdlib/ndarray/sub2ind ` ] [ @stdlib/ndarray/sub2ind ] : convert subscripts to a linear index.
191
+
184
192
</section >
185
193
186
194
<!-- /.related -->
@@ -189,6 +197,16 @@ for ( i = 0; i < len; i++ ) {
189
197
190
198
<section class =" links " >
191
199
200
+ <!-- <related-links> -->
201
+
202
+ [ @stdlib/ndarray/array ] : https://github.com/stdlib-js/ndarray/tree/main/array
203
+
204
+ [ @stdlib/ndarray/ctor ] : https://github.com/stdlib-js/ndarray/tree/main/ctor
205
+
206
+ [ @stdlib/ndarray/sub2ind ] : https://github.com/stdlib-js/ndarray/tree/main/sub2ind
207
+
208
+ <!-- </related-links> -->
209
+
192
210
</section >
193
211
194
212
<!-- /.links -->
Original file line number Diff line number Diff line change @@ -118,6 +118,13 @@ bool = isMode( 'beep' );
118
118
119
119
<section class =" related " >
120
120
121
+ * * *
122
+
123
+ ## See Also
124
+
125
+ - [ ` @stdlib/ndarray/array ` ] [ @stdlib/ndarray/array ] : multidimensional arrays.
126
+ - [ ` @stdlib/ndarray/ctor ` ] [ @stdlib/ndarray/ctor ] : multidimensional array constructor.
127
+
121
128
</section >
122
129
123
130
<!-- /.related -->
@@ -126,6 +133,14 @@ bool = isMode( 'beep' );
126
133
127
134
<section class =" links " >
128
135
136
+ <!-- <related-links> -->
137
+
138
+ [ @stdlib/ndarray/array ] : https://github.com/stdlib-js/ndarray/tree/main/array
139
+
140
+ [ @stdlib/ndarray/ctor ] : https://github.com/stdlib-js/ndarray/tree/main/ctor
141
+
142
+ <!-- </related-links> -->
143
+
129
144
</section >
130
145
131
146
<!-- /.links -->
You can’t perform that action at this time.
0 commit comments