@stdlib/strided-base 0.0.6 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CITATION.cff +30 -0
- package/LICENSE +0 -304
- package/NOTICE +1 -1
- package/README.md +127 -10
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +7 -0
- package/docs/types/index.d.ts +995 -6
- package/lib/index.js +256 -0
- package/package.json +134 -39
- package/docs/types/test.ts +0 -29
package/lib/index.js
CHANGED
|
@@ -22,6 +22,10 @@
|
|
|
22
22
|
* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
|
+
/*
|
|
26
|
+
* The following modules are intentionally not exported: function-object
|
|
27
|
+
*/
|
|
28
|
+
|
|
25
29
|
// MODULES //
|
|
26
30
|
|
|
27
31
|
var setReadOnly = require( '@stdlib/utils-define-read-only-property' );
|
|
@@ -45,6 +49,42 @@ var ns = {};
|
|
|
45
49
|
*/
|
|
46
50
|
setReadOnly( ns, 'binary', require( '@stdlib/strided-base-binary' ) );
|
|
47
51
|
|
|
52
|
+
/**
|
|
53
|
+
* @name binaryAddonDispatch
|
|
54
|
+
* @memberof ns
|
|
55
|
+
* @readonly
|
|
56
|
+
* @type {Function}
|
|
57
|
+
* @see {@link module:@stdlib/strided/base/binary-addon-dispatch}
|
|
58
|
+
*/
|
|
59
|
+
setReadOnly( ns, 'binaryAddonDispatch', require( '@stdlib/strided-base-binary-addon-dispatch' ) );
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* @name binaryDtypeSignatures
|
|
63
|
+
* @memberof ns
|
|
64
|
+
* @readonly
|
|
65
|
+
* @type {Function}
|
|
66
|
+
* @see {@link module:@stdlib/strided/base/binary-dtype-signatures}
|
|
67
|
+
*/
|
|
68
|
+
setReadOnly( ns, 'binaryDtypeSignatures', require( '@stdlib/strided-base-binary-dtype-signatures' ) );
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* @name binarySignatureCallbacks
|
|
72
|
+
* @memberof ns
|
|
73
|
+
* @readonly
|
|
74
|
+
* @type {Function}
|
|
75
|
+
* @see {@link module:@stdlib/strided/base/binary-signature-callbacks}
|
|
76
|
+
*/
|
|
77
|
+
setReadOnly( ns, 'binarySignatureCallbacks', require( '@stdlib/strided-base-binary-signature-callbacks' ) );
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* @name cmap
|
|
81
|
+
* @memberof ns
|
|
82
|
+
* @readonly
|
|
83
|
+
* @type {Function}
|
|
84
|
+
* @see {@link module:@stdlib/strided/base/cmap}
|
|
85
|
+
*/
|
|
86
|
+
setReadOnly( ns, 'cmap', require( '@stdlib/strided-base-cmap' ) );
|
|
87
|
+
|
|
48
88
|
/**
|
|
49
89
|
* @name dmap
|
|
50
90
|
* @memberof ns
|
|
@@ -54,6 +94,15 @@ setReadOnly( ns, 'binary', require( '@stdlib/strided-base-binary' ) );
|
|
|
54
94
|
*/
|
|
55
95
|
setReadOnly( ns, 'dmap', require( '@stdlib/strided-base-dmap' ) );
|
|
56
96
|
|
|
97
|
+
/**
|
|
98
|
+
* @name dmap2
|
|
99
|
+
* @memberof ns
|
|
100
|
+
* @readonly
|
|
101
|
+
* @type {Function}
|
|
102
|
+
* @see {@link module:@stdlib/strided/base/dmap2}
|
|
103
|
+
*/
|
|
104
|
+
setReadOnly( ns, 'dmap2', require( '@stdlib/strided-base-dmap2' ) );
|
|
105
|
+
|
|
57
106
|
/**
|
|
58
107
|
* @name dmskmap
|
|
59
108
|
* @memberof ns
|
|
@@ -63,6 +112,51 @@ setReadOnly( ns, 'dmap', require( '@stdlib/strided-base-dmap' ) );
|
|
|
63
112
|
*/
|
|
64
113
|
setReadOnly( ns, 'dmskmap', require( '@stdlib/strided-base-dmskmap' ) );
|
|
65
114
|
|
|
115
|
+
/**
|
|
116
|
+
* @name dmskmap2
|
|
117
|
+
* @memberof ns
|
|
118
|
+
* @readonly
|
|
119
|
+
* @type {Function}
|
|
120
|
+
* @see {@link module:@stdlib/strided/base/dmskmap2}
|
|
121
|
+
*/
|
|
122
|
+
setReadOnly( ns, 'dmskmap2', require( '@stdlib/strided-base-dmskmap2' ) );
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* @name dtypeEnum2Str
|
|
126
|
+
* @memberof ns
|
|
127
|
+
* @readonly
|
|
128
|
+
* @type {Function}
|
|
129
|
+
* @see {@link module:@stdlib/strided/base/dtype-enum2str}
|
|
130
|
+
*/
|
|
131
|
+
setReadOnly( ns, 'dtypeEnum2Str', require( '@stdlib/strided-base-dtype-enum2str' ) );
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* @name dtypeResolveEnum
|
|
135
|
+
* @memberof ns
|
|
136
|
+
* @readonly
|
|
137
|
+
* @type {Function}
|
|
138
|
+
* @see {@link module:@stdlib/strided/base/dtype-resolve-enum}
|
|
139
|
+
*/
|
|
140
|
+
setReadOnly( ns, 'dtypeResolveEnum', require( '@stdlib/strided-base-dtype-resolve-enum' ) );
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* @name dtypeResolveStr
|
|
144
|
+
* @memberof ns
|
|
145
|
+
* @readonly
|
|
146
|
+
* @type {Function}
|
|
147
|
+
* @see {@link module:@stdlib/strided/base/dtype-resolve-str}
|
|
148
|
+
*/
|
|
149
|
+
setReadOnly( ns, 'dtypeResolveStr', require( '@stdlib/strided-base-dtype-resolve-str' ) );
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* @name dtypeStr2Enum
|
|
153
|
+
* @memberof ns
|
|
154
|
+
* @readonly
|
|
155
|
+
* @type {Function}
|
|
156
|
+
* @see {@link module:@stdlib/strided/base/dtype-str2enum}
|
|
157
|
+
*/
|
|
158
|
+
setReadOnly( ns, 'dtypeStr2Enum', require( '@stdlib/strided-base-dtype-str2enum' ) );
|
|
159
|
+
|
|
66
160
|
/**
|
|
67
161
|
* @name mapBy
|
|
68
162
|
* @memberof ns
|
|
@@ -72,6 +166,42 @@ setReadOnly( ns, 'dmskmap', require( '@stdlib/strided-base-dmskmap' ) );
|
|
|
72
166
|
*/
|
|
73
167
|
setReadOnly( ns, 'mapBy', require( '@stdlib/strided-base-map-by' ) );
|
|
74
168
|
|
|
169
|
+
/**
|
|
170
|
+
* @name mapBy2
|
|
171
|
+
* @memberof ns
|
|
172
|
+
* @readonly
|
|
173
|
+
* @type {Function}
|
|
174
|
+
* @see {@link module:@stdlib/strided/base/map-by2}
|
|
175
|
+
*/
|
|
176
|
+
setReadOnly( ns, 'mapBy2', require( '@stdlib/strided-base-map-by2' ) );
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* @name maxViewBufferIndex
|
|
180
|
+
* @memberof ns
|
|
181
|
+
* @readonly
|
|
182
|
+
* @type {Function}
|
|
183
|
+
* @see {@link module:@stdlib/strided/base/max-view-buffer-index}
|
|
184
|
+
*/
|
|
185
|
+
setReadOnly( ns, 'maxViewBufferIndex', require( '@stdlib/strided-base-max-view-buffer-index' ) );
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* @name metaDataProps
|
|
189
|
+
* @memberof ns
|
|
190
|
+
* @readonly
|
|
191
|
+
* @type {Function}
|
|
192
|
+
* @see {@link module:@stdlib/strided/base/meta-data-props}
|
|
193
|
+
*/
|
|
194
|
+
setReadOnly( ns, 'metaDataProps', require( '@stdlib/strided-base-meta-data-props' ) );
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* @name minViewBufferIndex
|
|
198
|
+
* @memberof ns
|
|
199
|
+
* @readonly
|
|
200
|
+
* @type {Function}
|
|
201
|
+
* @see {@link module:@stdlib/strided/base/min-view-buffer-index}
|
|
202
|
+
*/
|
|
203
|
+
setReadOnly( ns, 'minViewBufferIndex', require( '@stdlib/strided-base-min-view-buffer-index' ) );
|
|
204
|
+
|
|
75
205
|
/**
|
|
76
206
|
* @name mskunary
|
|
77
207
|
* @memberof ns
|
|
@@ -81,6 +211,33 @@ setReadOnly( ns, 'mapBy', require( '@stdlib/strided-base-map-by' ) );
|
|
|
81
211
|
*/
|
|
82
212
|
setReadOnly( ns, 'mskunary', require( '@stdlib/strided-base-mskunary' ) );
|
|
83
213
|
|
|
214
|
+
/**
|
|
215
|
+
* @name mskunaryAddonDispatch
|
|
216
|
+
* @memberof ns
|
|
217
|
+
* @readonly
|
|
218
|
+
* @type {Function}
|
|
219
|
+
* @see {@link module:@stdlib/strided/base/mskunary-addon-dispatch}
|
|
220
|
+
*/
|
|
221
|
+
setReadOnly( ns, 'mskunaryAddonDispatch', require( '@stdlib/strided-base-mskunary-addon-dispatch' ) );
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
* @name mskunaryDtypeSignatures
|
|
225
|
+
* @memberof ns
|
|
226
|
+
* @readonly
|
|
227
|
+
* @type {Function}
|
|
228
|
+
* @see {@link module:@stdlib/strided/base/mskunary-dtype-signatures}
|
|
229
|
+
*/
|
|
230
|
+
setReadOnly( ns, 'mskunaryDtypeSignatures', require( '@stdlib/strided-base-mskunary-dtype-signatures' ) );
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* @name mskunarySignatureCallbacks
|
|
234
|
+
* @memberof ns
|
|
235
|
+
* @readonly
|
|
236
|
+
* @type {Function}
|
|
237
|
+
* @see {@link module:@stdlib/strided/base/mskunary-signature-callbacks}
|
|
238
|
+
*/
|
|
239
|
+
setReadOnly( ns, 'mskunarySignatureCallbacks', require( '@stdlib/strided-base-mskunary-signature-callbacks' ) );
|
|
240
|
+
|
|
84
241
|
/**
|
|
85
242
|
* @name nullary
|
|
86
243
|
* @memberof ns
|
|
@@ -90,6 +247,24 @@ setReadOnly( ns, 'mskunary', require( '@stdlib/strided-base-mskunary' ) );
|
|
|
90
247
|
*/
|
|
91
248
|
setReadOnly( ns, 'nullary', require( '@stdlib/strided-base-nullary' ) );
|
|
92
249
|
|
|
250
|
+
/**
|
|
251
|
+
* @name nullaryAddonDispatch
|
|
252
|
+
* @memberof ns
|
|
253
|
+
* @readonly
|
|
254
|
+
* @type {Function}
|
|
255
|
+
* @see {@link module:@stdlib/strided/base/nullary-addon-dispatch}
|
|
256
|
+
*/
|
|
257
|
+
setReadOnly( ns, 'nullaryAddonDispatch', require( '@stdlib/strided-base-nullary-addon-dispatch' ) );
|
|
258
|
+
|
|
259
|
+
/**
|
|
260
|
+
* @name offsetView
|
|
261
|
+
* @memberof ns
|
|
262
|
+
* @readonly
|
|
263
|
+
* @type {Function}
|
|
264
|
+
* @see {@link module:@stdlib/strided/base/offset-view}
|
|
265
|
+
*/
|
|
266
|
+
setReadOnly( ns, 'offsetView', require( '@stdlib/strided-base-offset-view' ) );
|
|
267
|
+
|
|
93
268
|
/**
|
|
94
269
|
* @name quaternary
|
|
95
270
|
* @memberof ns
|
|
@@ -108,6 +283,24 @@ setReadOnly( ns, 'quaternary', require( '@stdlib/strided-base-quaternary' ) );
|
|
|
108
283
|
*/
|
|
109
284
|
setReadOnly( ns, 'quinary', require( '@stdlib/strided-base-quinary' ) );
|
|
110
285
|
|
|
286
|
+
/**
|
|
287
|
+
* @name reinterpretComplex64
|
|
288
|
+
* @memberof ns
|
|
289
|
+
* @readonly
|
|
290
|
+
* @type {Function}
|
|
291
|
+
* @see {@link module:@stdlib/strided/base/reinterpret-complex64}
|
|
292
|
+
*/
|
|
293
|
+
setReadOnly( ns, 'reinterpretComplex64', require( '@stdlib/strided-base-reinterpret-complex64' ) );
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* @name reinterpretComplex128
|
|
297
|
+
* @memberof ns
|
|
298
|
+
* @readonly
|
|
299
|
+
* @type {Function}
|
|
300
|
+
* @see {@link module:@stdlib/strided/base/reinterpret-complex128}
|
|
301
|
+
*/
|
|
302
|
+
setReadOnly( ns, 'reinterpretComplex128', require( '@stdlib/strided-base-reinterpret-complex128' ) );
|
|
303
|
+
|
|
111
304
|
/**
|
|
112
305
|
* @name smap
|
|
113
306
|
* @memberof ns
|
|
@@ -117,6 +310,15 @@ setReadOnly( ns, 'quinary', require( '@stdlib/strided-base-quinary' ) );
|
|
|
117
310
|
*/
|
|
118
311
|
setReadOnly( ns, 'smap', require( '@stdlib/strided-base-smap' ) );
|
|
119
312
|
|
|
313
|
+
/**
|
|
314
|
+
* @name smap2
|
|
315
|
+
* @memberof ns
|
|
316
|
+
* @readonly
|
|
317
|
+
* @type {Function}
|
|
318
|
+
* @see {@link module:@stdlib/strided/base/smap2}
|
|
319
|
+
*/
|
|
320
|
+
setReadOnly( ns, 'smap2', require( '@stdlib/strided-base-smap2' ) );
|
|
321
|
+
|
|
120
322
|
/**
|
|
121
323
|
* @name smskmap
|
|
122
324
|
* @memberof ns
|
|
@@ -126,6 +328,15 @@ setReadOnly( ns, 'smap', require( '@stdlib/strided-base-smap' ) );
|
|
|
126
328
|
*/
|
|
127
329
|
setReadOnly( ns, 'smskmap', require( '@stdlib/strided-base-smskmap' ) );
|
|
128
330
|
|
|
331
|
+
/**
|
|
332
|
+
* @name smskmap2
|
|
333
|
+
* @memberof ns
|
|
334
|
+
* @readonly
|
|
335
|
+
* @type {Function}
|
|
336
|
+
* @see {@link module:@stdlib/strided/base/smskmap2}
|
|
337
|
+
*/
|
|
338
|
+
setReadOnly( ns, 'smskmap2', require( '@stdlib/strided-base-smskmap2' ) );
|
|
339
|
+
|
|
129
340
|
/**
|
|
130
341
|
* @name ternary
|
|
131
342
|
* @memberof ns
|
|
@@ -144,6 +355,51 @@ setReadOnly( ns, 'ternary', require( '@stdlib/strided-base-ternary' ) );
|
|
|
144
355
|
*/
|
|
145
356
|
setReadOnly( ns, 'unary', require( '@stdlib/strided-base-unary' ) );
|
|
146
357
|
|
|
358
|
+
/**
|
|
359
|
+
* @name unaryAddonDispatch
|
|
360
|
+
* @memberof ns
|
|
361
|
+
* @readonly
|
|
362
|
+
* @type {Function}
|
|
363
|
+
* @see {@link module:@stdlib/strided/base/unary-addon-dispatch}
|
|
364
|
+
*/
|
|
365
|
+
setReadOnly( ns, 'unaryAddonDispatch', require( '@stdlib/strided-base-unary-addon-dispatch' ) );
|
|
366
|
+
|
|
367
|
+
/**
|
|
368
|
+
* @name unaryBy
|
|
369
|
+
* @memberof ns
|
|
370
|
+
* @readonly
|
|
371
|
+
* @type {Function}
|
|
372
|
+
* @see {@link module:@stdlib/strided/base/unary-by}
|
|
373
|
+
*/
|
|
374
|
+
setReadOnly( ns, 'unaryBy', require( '@stdlib/strided-base-unary-by' ) );
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* @name unaryDtypeSignatures
|
|
378
|
+
* @memberof ns
|
|
379
|
+
* @readonly
|
|
380
|
+
* @type {Function}
|
|
381
|
+
* @see {@link module:@stdlib/strided/base/unary-dtype-signatures}
|
|
382
|
+
*/
|
|
383
|
+
setReadOnly( ns, 'unaryDtypeSignatures', require( '@stdlib/strided-base-unary-dtype-signatures' ) );
|
|
384
|
+
|
|
385
|
+
/**
|
|
386
|
+
* @name unarySignatureCallbacks
|
|
387
|
+
* @memberof ns
|
|
388
|
+
* @readonly
|
|
389
|
+
* @type {Function}
|
|
390
|
+
* @see {@link module:@stdlib/strided/base/unary-signature-callbacks}
|
|
391
|
+
*/
|
|
392
|
+
setReadOnly( ns, 'unarySignatureCallbacks', require( '@stdlib/strided-base-unary-signature-callbacks' ) );
|
|
393
|
+
|
|
394
|
+
/**
|
|
395
|
+
* @name zmap
|
|
396
|
+
* @memberof ns
|
|
397
|
+
* @readonly
|
|
398
|
+
* @type {Function}
|
|
399
|
+
* @see {@link module:@stdlib/strided/base/zmap}
|
|
400
|
+
*/
|
|
401
|
+
setReadOnly( ns, 'zmap', require( '@stdlib/strided-base-zmap' ) );
|
|
402
|
+
|
|
147
403
|
|
|
148
404
|
// EXPORTS //
|
|
149
405
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/strided-base",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Base strided.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -36,46 +36,141 @@
|
|
|
36
36
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@stdlib/strided-base-binary": "^0.0.
|
|
40
|
-
"@stdlib/strided-base-
|
|
41
|
-
"@stdlib/strided-base-
|
|
42
|
-
"@stdlib/strided-base-
|
|
43
|
-
"@stdlib/strided-base-
|
|
44
|
-
"@stdlib/strided-base-
|
|
45
|
-
"@stdlib/strided-base-
|
|
46
|
-
"@stdlib/strided-base-
|
|
47
|
-
"@stdlib/strided-base-
|
|
48
|
-
"@stdlib/strided-base-
|
|
49
|
-
"@stdlib/strided-base-
|
|
50
|
-
"@stdlib/strided-base-
|
|
51
|
-
"@stdlib/
|
|
39
|
+
"@stdlib/strided-base-binary": "^0.0.8",
|
|
40
|
+
"@stdlib/strided-base-binary-addon-dispatch": "^0.1.0",
|
|
41
|
+
"@stdlib/strided-base-binary-dtype-signatures": "^0.1.0",
|
|
42
|
+
"@stdlib/strided-base-binary-signature-callbacks": "^0.1.0",
|
|
43
|
+
"@stdlib/strided-base-cmap": "^0.1.0",
|
|
44
|
+
"@stdlib/strided-base-dmap": "^0.1.0",
|
|
45
|
+
"@stdlib/strided-base-dmap2": "^0.1.0",
|
|
46
|
+
"@stdlib/strided-base-dmskmap": "^0.1.0",
|
|
47
|
+
"@stdlib/strided-base-dmskmap2": "^0.1.0",
|
|
48
|
+
"@stdlib/strided-base-dtype-enum2str": "^0.1.0",
|
|
49
|
+
"@stdlib/strided-base-dtype-resolve-enum": "^0.1.0",
|
|
50
|
+
"@stdlib/strided-base-dtype-resolve-str": "^0.1.0",
|
|
51
|
+
"@stdlib/strided-base-dtype-str2enum": "^0.1.0",
|
|
52
|
+
"@stdlib/strided-base-map-by": "^0.0.7",
|
|
53
|
+
"@stdlib/strided-base-map-by2": "^0.0.1",
|
|
54
|
+
"@stdlib/strided-base-max-view-buffer-index": "^0.1.0",
|
|
55
|
+
"@stdlib/strided-base-meta-data-props": "^0.1.0",
|
|
56
|
+
"@stdlib/strided-base-min-view-buffer-index": "^0.1.0",
|
|
57
|
+
"@stdlib/strided-base-mskunary": "^0.0.8",
|
|
58
|
+
"@stdlib/strided-base-mskunary-addon-dispatch": "^0.1.0",
|
|
59
|
+
"@stdlib/strided-base-mskunary-dtype-signatures": "^0.1.0",
|
|
60
|
+
"@stdlib/strided-base-mskunary-signature-callbacks": "^0.1.0",
|
|
61
|
+
"@stdlib/strided-base-nullary": "^0.0.7",
|
|
62
|
+
"@stdlib/strided-base-nullary-addon-dispatch": "^0.1.0",
|
|
63
|
+
"@stdlib/strided-base-offset-view": "^0.1.0",
|
|
64
|
+
"@stdlib/strided-base-quaternary": "^0.1.0",
|
|
65
|
+
"@stdlib/strided-base-quinary": "^0.1.0",
|
|
66
|
+
"@stdlib/strided-base-reinterpret-complex128": "^0.1.0",
|
|
67
|
+
"@stdlib/strided-base-reinterpret-complex64": "^0.1.0",
|
|
68
|
+
"@stdlib/strided-base-smap": "^0.1.0",
|
|
69
|
+
"@stdlib/strided-base-smap2": "^0.1.0",
|
|
70
|
+
"@stdlib/strided-base-smskmap": "^0.1.0",
|
|
71
|
+
"@stdlib/strided-base-smskmap2": "^0.1.0",
|
|
72
|
+
"@stdlib/strided-base-ternary": "^0.1.0",
|
|
73
|
+
"@stdlib/strided-base-unary": "^0.1.0",
|
|
74
|
+
"@stdlib/strided-base-unary-addon-dispatch": "^0.1.0",
|
|
75
|
+
"@stdlib/strided-base-unary-by": "^0.1.0",
|
|
76
|
+
"@stdlib/strided-base-unary-dtype-signatures": "^0.1.0",
|
|
77
|
+
"@stdlib/strided-base-unary-signature-callbacks": "^0.1.0",
|
|
78
|
+
"@stdlib/strided-base-zmap": "^0.1.0",
|
|
79
|
+
"@stdlib/utils-define-read-only-property": "^0.1.0"
|
|
52
80
|
},
|
|
53
81
|
"devDependencies": {
|
|
54
|
-
"@stdlib/array-
|
|
55
|
-
"@stdlib/array-
|
|
56
|
-
"@stdlib/array-
|
|
57
|
-
"@stdlib/array-
|
|
58
|
-
"@stdlib/
|
|
59
|
-
"@stdlib/
|
|
60
|
-
"@stdlib/
|
|
61
|
-
"@stdlib/
|
|
62
|
-
"@stdlib/
|
|
63
|
-
"@stdlib/
|
|
64
|
-
"@stdlib/
|
|
65
|
-
"@stdlib/
|
|
66
|
-
"@stdlib/
|
|
67
|
-
"@stdlib/
|
|
68
|
-
"@stdlib/
|
|
69
|
-
"@stdlib/
|
|
70
|
-
"@stdlib/
|
|
71
|
-
"@stdlib/
|
|
72
|
-
"@stdlib/
|
|
73
|
-
"@stdlib/
|
|
74
|
-
"@stdlib/
|
|
75
|
-
"@stdlib/
|
|
82
|
+
"@stdlib/array-base-accessor-getter": "^0.1.0",
|
|
83
|
+
"@stdlib/array-base-accessor-setter": "^0.1.0",
|
|
84
|
+
"@stdlib/array-base-assert-is-accessor-array": "^0.1.0",
|
|
85
|
+
"@stdlib/array-base-getter": "^0.1.0",
|
|
86
|
+
"@stdlib/array-base-setter": "^0.1.0",
|
|
87
|
+
"@stdlib/array-buffer": "^0.1.0",
|
|
88
|
+
"@stdlib/array-complex128": "^0.1.0",
|
|
89
|
+
"@stdlib/array-complex64": "^0.1.0",
|
|
90
|
+
"@stdlib/array-dtype": "^0.1.0",
|
|
91
|
+
"@stdlib/array-filled": "^0.0.6",
|
|
92
|
+
"@stdlib/array-filled-by": "^0.0.2",
|
|
93
|
+
"@stdlib/array-float32": "^0.1.0",
|
|
94
|
+
"@stdlib/array-float64": "^0.1.0",
|
|
95
|
+
"@stdlib/array-uint8": "^0.1.0",
|
|
96
|
+
"@stdlib/assert-has-own-property": "^0.1.0",
|
|
97
|
+
"@stdlib/assert-is-array": "^0.1.0",
|
|
98
|
+
"@stdlib/assert-is-browser": "^0.1.0",
|
|
99
|
+
"@stdlib/assert-is-complex128": "^0.1.0",
|
|
100
|
+
"@stdlib/assert-is-complex64": "^0.1.0",
|
|
101
|
+
"@stdlib/assert-is-complex64array": "^0.1.0",
|
|
102
|
+
"@stdlib/assert-is-float32array": "^0.1.0",
|
|
103
|
+
"@stdlib/assert-is-float64array": "^0.1.0",
|
|
104
|
+
"@stdlib/assert-is-function": "^0.1.0",
|
|
105
|
+
"@stdlib/assert-is-function-array": "^0.1.0",
|
|
106
|
+
"@stdlib/assert-is-integer": "^0.1.0",
|
|
107
|
+
"@stdlib/assert-is-integer-array": "^0.1.0",
|
|
108
|
+
"@stdlib/assert-is-nonnegative-integer": "^0.1.0",
|
|
109
|
+
"@stdlib/assert-is-string": "^0.1.0",
|
|
110
|
+
"@stdlib/assert-is-string-array": "^0.1.0",
|
|
111
|
+
"@stdlib/assert-is-typed-array": "^0.1.0",
|
|
112
|
+
"@stdlib/assert-is-typed-array-like": "^0.1.0",
|
|
113
|
+
"@stdlib/assert-is-uint8array": "^0.1.0",
|
|
114
|
+
"@stdlib/bench": "^0.1.0",
|
|
115
|
+
"@stdlib/complex-base-cast-return": "^0.1.0",
|
|
116
|
+
"@stdlib/complex-base-wrap-function": "^0.1.0",
|
|
117
|
+
"@stdlib/complex-float32": "^0.1.0",
|
|
118
|
+
"@stdlib/complex-float64": "^0.1.0",
|
|
119
|
+
"@stdlib/complex-imag": "^0.1.0",
|
|
120
|
+
"@stdlib/complex-imagf": "^0.1.0",
|
|
121
|
+
"@stdlib/complex-real": "^0.1.0",
|
|
122
|
+
"@stdlib/complex-realf": "^0.1.0",
|
|
123
|
+
"@stdlib/fs-read-dir": "^0.1.0",
|
|
124
|
+
"@stdlib/fs-read-file": "^0.1.0",
|
|
125
|
+
"@stdlib/fs-read-json": "^0.1.0",
|
|
126
|
+
"@stdlib/fs-unlink": "^0.1.0",
|
|
127
|
+
"@stdlib/fs-write-file": "^0.1.0",
|
|
128
|
+
"@stdlib/math-base-assert-is-nan": "^0.1.0",
|
|
129
|
+
"@stdlib/math-base-assert-is-nanf": "^0.1.0",
|
|
130
|
+
"@stdlib/math-base-ops-add": "^0.1.0",
|
|
131
|
+
"@stdlib/math-base-ops-addf": "^0.1.0",
|
|
132
|
+
"@stdlib/math-base-ops-cadd": "^0.1.0",
|
|
133
|
+
"@stdlib/math-base-ops-caddf": "^0.1.0",
|
|
134
|
+
"@stdlib/math-base-special-abs": "^0.1.0",
|
|
135
|
+
"@stdlib/math-base-special-absf": "^0.1.0",
|
|
136
|
+
"@stdlib/math-base-special-cceil": "^0.1.0",
|
|
137
|
+
"@stdlib/math-base-special-cceilf": "^0.1.0",
|
|
138
|
+
"@stdlib/math-base-special-ceil": "^0.1.0",
|
|
139
|
+
"@stdlib/math-base-special-cidentity": "^0.1.0",
|
|
140
|
+
"@stdlib/math-base-special-cidentityf": "^0.1.0",
|
|
141
|
+
"@stdlib/math-base-special-floor": "^0.1.0",
|
|
142
|
+
"@stdlib/math-base-special-identity": "^0.1.0",
|
|
143
|
+
"@stdlib/math-base-special-identityf": "^0.1.0",
|
|
144
|
+
"@stdlib/math-base-special-pow": "^0.1.0",
|
|
145
|
+
"@stdlib/math-base-special-round": "^0.1.0",
|
|
146
|
+
"@stdlib/ndarray-base-bytes-per-element": "^0.1.0",
|
|
147
|
+
"@stdlib/ndarray-base-char2dtype": "^0.1.0",
|
|
148
|
+
"@stdlib/ndarray-base-dtype-char": "^0.1.0",
|
|
149
|
+
"@stdlib/ndarray-base-dtype-desc": "^0.1.0",
|
|
150
|
+
"@stdlib/ndarray-base-dtype2c": "^0.1.0",
|
|
151
|
+
"@stdlib/ndarray-base-dtypes2signatures": "^0.1.0",
|
|
152
|
+
"@stdlib/ndarray-promotion-rules": "^0.1.0",
|
|
153
|
+
"@stdlib/ndarray-safe-casts": "^0.1.0",
|
|
154
|
+
"@stdlib/random-base-bernoulli": "^0.0.6",
|
|
155
|
+
"@stdlib/random-base-discrete-uniform": "^0.0.6",
|
|
156
|
+
"@stdlib/random-base-randu": "^0.0.8",
|
|
157
|
+
"@stdlib/random-base-uniform": "^0.0.6",
|
|
158
|
+
"@stdlib/strided-dtypes": "^0.1.0",
|
|
159
|
+
"@stdlib/string-format": "^0.1.0",
|
|
160
|
+
"@stdlib/string-replace": "^0.1.0",
|
|
161
|
+
"@stdlib/string-substring-after": "^0.1.0",
|
|
162
|
+
"@stdlib/string-substring-before": "^0.1.0",
|
|
163
|
+
"@stdlib/string-uppercase": "^0.1.0",
|
|
164
|
+
"@stdlib/time-current-year": "^0.1.0",
|
|
165
|
+
"@stdlib/utils-constant-function": "^0.1.0",
|
|
166
|
+
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.1.0",
|
|
167
|
+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.0",
|
|
168
|
+
"@stdlib/utils-keys": "^0.1.0",
|
|
169
|
+
"@stdlib/utils-noop": "^0.1.0",
|
|
170
|
+
"@stdlib/utils-object-inverse": "^0.1.0",
|
|
76
171
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
77
172
|
"istanbul": "^0.4.1",
|
|
78
|
-
"tap-
|
|
173
|
+
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
|
|
79
174
|
},
|
|
80
175
|
"engines": {
|
|
81
176
|
"node": ">=0.10.0",
|
|
@@ -107,7 +202,7 @@
|
|
|
107
202
|
"elementwise"
|
|
108
203
|
],
|
|
109
204
|
"funding": {
|
|
110
|
-
"type": "
|
|
111
|
-
"url": "https://
|
|
205
|
+
"type": "opencollective",
|
|
206
|
+
"url": "https://opencollective.com/stdlib"
|
|
112
207
|
}
|
|
113
208
|
}
|
package/docs/types/test.ts
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* @license Apache-2.0
|
|
3
|
-
*
|
|
4
|
-
* Copyright (c) 2021 The Stdlib Authors.
|
|
5
|
-
*
|
|
6
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
* you may not use this file except in compliance with the License.
|
|
8
|
-
* You may obtain a copy of the License at
|
|
9
|
-
*
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*
|
|
12
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
* See the License for the specific language governing permissions and
|
|
16
|
-
* limitations under the License.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
/* tslint:disable:no-unused-expression */
|
|
20
|
-
|
|
21
|
-
import base = require( './index' );
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
// TESTS //
|
|
25
|
-
|
|
26
|
-
// The exported value is the expected interface...
|
|
27
|
-
{
|
|
28
|
-
base; // $ExpectType Namespace
|
|
29
|
-
}
|