@stdlib/strided-base 0.0.7 → 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/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' );
@@ -207,6 +211,33 @@ setReadOnly( ns, 'minViewBufferIndex', require( '@stdlib/strided-base-min-view-b
207
211
  */
208
212
  setReadOnly( ns, 'mskunary', require( '@stdlib/strided-base-mskunary' ) );
209
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
+
210
241
  /**
211
242
  * @name nullary
212
243
  * @memberof ns
@@ -216,6 +247,15 @@ setReadOnly( ns, 'mskunary', require( '@stdlib/strided-base-mskunary' ) );
216
247
  */
217
248
  setReadOnly( ns, 'nullary', require( '@stdlib/strided-base-nullary' ) );
218
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
+
219
259
  /**
220
260
  * @name offsetView
221
261
  * @memberof ns
@@ -324,6 +364,33 @@ setReadOnly( ns, 'unary', require( '@stdlib/strided-base-unary' ) );
324
364
  */
325
365
  setReadOnly( ns, 'unaryAddonDispatch', require( '@stdlib/strided-base-unary-addon-dispatch' ) );
326
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
+
327
394
  /**
328
395
  * @name zmap
329
396
  * @memberof ns
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/strided-base",
3
- "version": "0.0.7",
3
+ "version": "0.1.0",
4
4
  "description": "Base strided.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -36,120 +36,141 @@
36
36
  "url": "https://github.com/stdlib-js/stdlib/issues"
37
37
  },
38
38
  "dependencies": {
39
- "@stdlib/strided-base-binary": "^0.0.x",
40
- "@stdlib/strided-base-binary-addon-dispatch": "^0.0.x",
41
- "@stdlib/strided-base-binary-dtype-signatures": "^0.0.x",
42
- "@stdlib/strided-base-binary-signature-callbacks": "^0.0.x",
43
- "@stdlib/strided-base-cmap": "^0.0.x",
44
- "@stdlib/strided-base-dmap": "^0.0.x",
45
- "@stdlib/strided-base-dmap2": "^0.0.x",
46
- "@stdlib/strided-base-dmskmap": "^0.0.x",
47
- "@stdlib/strided-base-dmskmap2": "^0.0.x",
48
- "@stdlib/strided-base-dtype-enum2str": "^0.0.x",
49
- "@stdlib/strided-base-dtype-resolve-enum": "^0.0.x",
50
- "@stdlib/strided-base-dtype-resolve-str": "^0.0.x",
51
- "@stdlib/strided-base-dtype-str2enum": "^0.0.x",
52
- "@stdlib/strided-base-map-by": "^0.0.x",
53
- "@stdlib/strided-base-map-by2": "^0.0.x",
54
- "@stdlib/strided-base-max-view-buffer-index": "^0.0.x",
55
- "@stdlib/strided-base-meta-data-props": "^0.0.x",
56
- "@stdlib/strided-base-min-view-buffer-index": "^0.0.x",
57
- "@stdlib/strided-base-mskunary": "^0.0.x",
58
- "@stdlib/strided-base-nullary": "^0.0.x",
59
- "@stdlib/strided-base-offset-view": "^0.0.x",
60
- "@stdlib/strided-base-quaternary": "^0.0.x",
61
- "@stdlib/strided-base-quinary": "^0.0.x",
62
- "@stdlib/strided-base-reinterpret-complex128": "^0.0.x",
63
- "@stdlib/strided-base-reinterpret-complex64": "^0.0.x",
64
- "@stdlib/strided-base-smap": "^0.0.x",
65
- "@stdlib/strided-base-smap2": "^0.0.x",
66
- "@stdlib/strided-base-smskmap": "^0.0.x",
67
- "@stdlib/strided-base-smskmap2": "^0.0.x",
68
- "@stdlib/strided-base-ternary": "^0.0.x",
69
- "@stdlib/strided-base-unary": "^0.0.x",
70
- "@stdlib/strided-base-unary-addon-dispatch": "^0.0.x",
71
- "@stdlib/strided-base-zmap": "^0.0.x",
72
- "@stdlib/utils-define-read-only-property": "^0.0.x"
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"
73
80
  },
74
81
  "devDependencies": {
75
- "@stdlib/array-buffer": "^0.0.x",
76
- "@stdlib/array-complex128": "^0.0.x",
77
- "@stdlib/array-complex64": "^0.0.x",
78
- "@stdlib/array-filled": "^0.0.x",
79
- "@stdlib/array-filled-by": "^0.0.x",
80
- "@stdlib/array-float32": "^0.0.x",
81
- "@stdlib/array-float64": "^0.0.x",
82
- "@stdlib/array-uint8": "^0.0.x",
83
- "@stdlib/assert-has-own-property": "^0.0.x",
84
- "@stdlib/assert-is-array": "^0.0.x",
85
- "@stdlib/assert-is-browser": "^0.0.x",
86
- "@stdlib/assert-is-complex128": "^0.0.x",
87
- "@stdlib/assert-is-complex64": "^0.0.x",
88
- "@stdlib/assert-is-complex64array": "^0.0.x",
89
- "@stdlib/assert-is-float32array": "^0.0.x",
90
- "@stdlib/assert-is-float64array": "^0.0.x",
91
- "@stdlib/assert-is-function": "^0.0.x",
92
- "@stdlib/assert-is-function-array": "^0.0.x",
93
- "@stdlib/assert-is-integer": "^0.0.x",
94
- "@stdlib/assert-is-integer-array": "^0.0.x",
95
- "@stdlib/assert-is-nonnegative-integer": "^0.0.x",
96
- "@stdlib/assert-is-string": "^0.0.x",
97
- "@stdlib/assert-is-string-array": "^0.0.x",
98
- "@stdlib/assert-is-typed-array": "^0.0.x",
99
- "@stdlib/assert-is-typed-array-like": "^0.0.x",
100
- "@stdlib/assert-is-uint8array": "^0.0.x",
101
- "@stdlib/bench": "^0.0.x",
102
- "@stdlib/complex-base-wrap-function": "^0.0.x",
103
- "@stdlib/complex-float32": "^0.0.x",
104
- "@stdlib/complex-float64": "^0.0.x",
105
- "@stdlib/complex-imag": "^0.0.x",
106
- "@stdlib/complex-real": "^0.0.x",
107
- "@stdlib/fs-read-dir": "^0.0.x",
108
- "@stdlib/fs-read-file": "^0.0.x",
109
- "@stdlib/fs-read-json": "^0.0.x",
110
- "@stdlib/fs-unlink": "^0.0.x",
111
- "@stdlib/fs-write-file": "^0.0.x",
112
- "@stdlib/math-base-assert-is-nan": "^0.0.x",
113
- "@stdlib/math-base-assert-is-nanf": "^0.0.x",
114
- "@stdlib/math-base-ops-add": "^0.0.x",
115
- "@stdlib/math-base-ops-addf": "^0.0.x",
116
- "@stdlib/math-base-ops-cadd": "^0.0.x",
117
- "@stdlib/math-base-ops-caddf": "^0.0.x",
118
- "@stdlib/math-base-special-abs": "^0.0.x",
119
- "@stdlib/math-base-special-absf": "^0.0.x",
120
- "@stdlib/math-base-special-cidentity": "^0.0.x",
121
- "@stdlib/math-base-special-cidentityf": "^0.0.x",
122
- "@stdlib/math-base-special-floor": "^0.0.x",
123
- "@stdlib/math-base-special-identity": "^0.0.x",
124
- "@stdlib/math-base-special-identityf": "^0.0.x",
125
- "@stdlib/math-base-special-pow": "^0.0.x",
126
- "@stdlib/math-base-special-round": "^0.0.x",
127
- "@stdlib/ndarray-base-bytes-per-element": "^0.0.x",
128
- "@stdlib/ndarray-base-char2dtype": "^0.0.x",
129
- "@stdlib/ndarray-base-dtype-char": "^0.0.x",
130
- "@stdlib/ndarray-base-dtype-desc": "^0.0.x",
131
- "@stdlib/ndarray-base-dtype2c": "^0.0.x",
132
- "@stdlib/ndarray-base-dtypes2signatures": "^0.0.x",
133
- "@stdlib/ndarray-promotion-rules": "^0.0.x",
134
- "@stdlib/ndarray-safe-casts": "^0.0.x",
135
- "@stdlib/random-base-bernoulli": "^0.0.x",
136
- "@stdlib/random-base-discrete-uniform": "^0.0.x",
137
- "@stdlib/random-base-randu": "^0.0.x",
138
- "@stdlib/random-base-uniform": "^0.0.x",
139
- "@stdlib/strided-dtypes": "^0.0.x",
140
- "@stdlib/string-replace": "^0.0.x",
141
- "@stdlib/string-substring-after": "^0.0.x",
142
- "@stdlib/string-substring-before": "^0.0.x",
143
- "@stdlib/string-uppercase": "^0.0.x",
144
- "@stdlib/utils-constant-function": "^0.0.x",
145
- "@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.0.x",
146
- "@stdlib/utils-define-nonenumerable-read-only-property": "^0.0.x",
147
- "@stdlib/utils-keys": "^0.0.x",
148
- "@stdlib/utils-noop": "^0.0.x",
149
- "@stdlib/utils-object-inverse": "^0.0.x",
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",
150
171
  "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
151
172
  "istanbul": "^0.4.1",
152
- "tap-spec": "5.x.x"
173
+ "tap-min": "git+https://github.com/Planeshifter/tap-min.git"
153
174
  },
154
175
  "engines": {
155
176
  "node": ">=0.10.0",
@@ -181,7 +202,7 @@
181
202
  "elementwise"
182
203
  ],
183
204
  "funding": {
184
- "type": "patreon",
185
- "url": "https://www.patreon.com/athan"
205
+ "type": "opencollective",
206
+ "url": "https://opencollective.com/stdlib"
186
207
  }
187
208
  }
@@ -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
- }