@@ -38,11 +38,11 @@ var min = require( '@stdlib/math/base/special/fast/min' );
38
38
* @param {Float64Array } A - input matrix
39
39
* @param {integer } strideA1 - stride of the first dimension of `A`
40
40
* @param {integer } strideA2 - stride of the second dimension of `A`
41
- * @param {PositiveInteger } offsetA - starting index for `A`
41
+ * @param {NonNegativeInteger } offsetA - starting index for `A`
42
42
* @param {Float64Array } B - output matrix
43
43
* @param {integer } strideB1 - stride of the first dimension of `B`
44
44
* @param {integer } strideB2 - stride of the second dimension of `B`
45
- * @param {PositiveInteger } offsetB - starting index for `B`
45
+ * @param {NonNegativeInteger } offsetB - starting index for `B`
46
46
* @returns {Float64Array } `B`
47
47
*
48
48
* @example
@@ -173,11 +173,11 @@ function copyAll( M, N, A, strideA1, strideA2, offsetA, B, strideB1, strideB2, o
173
173
* @param {Float64Array } A - input matrix
174
174
* @param {integer } strideA1 - stride of the first dimension of `A`
175
175
* @param {integer } strideA2 - stride of the second dimension of `A`
176
- * @param {PositiveInteger } offsetA - starting index for `A`
176
+ * @param {NonNegativeInteger } offsetA - starting index for `A`
177
177
* @param {Float64Array } B - output matrix
178
178
* @param {integer } strideB1 - stride of the first dimension of `B`
179
179
* @param {integer } strideB2 - stride of the second dimension of `B`
180
- * @param {PositiveInteger } offsetB - starting index for `B`
180
+ * @param {NonNegativeInteger } offsetB - starting index for `B`
181
181
* @returns {Float64Array } `B`
182
182
*
183
183
* @example
@@ -289,11 +289,11 @@ function copyUpper( M, N, A, strideA1, strideA2, offsetA, B, strideB1, strideB2,
289
289
* @param {Float64Array } A - input matrix
290
290
* @param {integer } strideA1 - stride of the first dimension of `A`
291
291
* @param {integer } strideA2 - stride of the second dimension of `A`
292
- * @param {PositiveInteger } offsetA - starting index for `A`
292
+ * @param {NonNegativeInteger } offsetA - starting index for `A`
293
293
* @param {Float64Array } B - output matrix
294
294
* @param {integer } strideB1 - stride of the first dimension of `B`
295
295
* @param {integer } strideB2 - stride of the second dimension of `B`
296
- * @param {PositiveInteger } offsetB - starting index for `B`
296
+ * @param {NonNegativeInteger } offsetB - starting index for `B`
297
297
* @returns {Float64Array } `B`
298
298
*
299
299
* @example
@@ -409,11 +409,11 @@ function copyLower( M, N, A, strideA1, strideA2, offsetA, B, strideB1, strideB2,
409
409
* @param {Float64Array } A - input matrix
410
410
* @param {integer } strideA1 - stride of the first dimension of `A`
411
411
* @param {integer } strideA2 - stride of the second dimension of `A`
412
- * @param {PositiveInteger } offsetA - starting index for `A`
412
+ * @param {NonNegativeInteger } offsetA - starting index for `A`
413
413
* @param {Float64Array } B - output matrix
414
414
* @param {integer } strideB1 - stride of the first dimension of `B`
415
415
* @param {integer } strideB2 - stride of the second dimension of `B`
416
- * @param {PositiveInteger } offsetB - starting index for `B`
416
+ * @param {NonNegativeInteger } offsetB - starting index for `B`
417
417
* @returns {Float64Array } `B`
418
418
*
419
419
* @example
0 commit comments