File tree 5 files changed +5
-5
lines changed
array/constants/max-typed-array-length/lib
uint16/base/from-binary-string/lib
uint32/base/from-binary-string/lib
uint8/base/from-binary-string/lib
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 20
20
* ```
21
21
*
22
22
* @constant
23
- * @type {uinteger }
23
+ * @type {uinteger32 }
24
24
* @default 9007199254740991
25
25
*/
26
26
var MAX_TYPED_ARRAY_LENGTH = 9007199254740991 ;
Original file line number Diff line number Diff line change 6
6
* Returns the number of elements in an array.
7
7
*
8
8
* @param {(NonNegativeIntegerArray|EmptyArray) } shape - array shape
9
- * @returns {uinteger } number of elements
9
+ * @returns {NonNegativeInteger } number of elements
10
10
*
11
11
* @example
12
12
* var n = numel( [ 3, 3, 3 ] );
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ var NBITS = 16;
17
17
*
18
18
* @param {BinaryString } bstr - string which is a literal bit representation
19
19
* @throws {Error } must provide a string with a length equal to `16`
20
- * @returns {uinteger } unsigned 16-bit integer
20
+ * @returns {uinteger16 } unsigned 16-bit integer
21
21
*
22
22
* @example
23
23
* var bstr = '0101010101010101';
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ var NBITS = 32;
18
18
*
19
19
* @param {BinaryString } bstr - string which is a literal bit representation
20
20
* @throws {Error } must provide a string with a length equal to `32`
21
- * @returns {uinteger } unsigned 32-bit integer
21
+ * @returns {uinteger32 } unsigned 32-bit integer
22
22
*
23
23
* @example
24
24
* var bstr = '01010101010101010101010101010101';
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ var NBITS = 8;
17
17
*
18
18
* @param {BinaryString } bstr - string which is a literal bit representation
19
19
* @throws {Error } must provide a string with a length equal to `8`
20
- * @returns {uinteger } unsigned 8-bit integer
20
+ * @returns {uinteger8 } unsigned 8-bit integer
21
21
*
22
22
* @example
23
23
* var bstr = '01010101';
You can’t perform that action at this time.
0 commit comments