Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Mask for excluding the sign bit of a half-precision floating-point number.
*
* @module @stdlib/constants/float16/abs-mask
* @type {uinteger16}

Check warning on line 25 in lib/node_modules/@stdlib/constants/float16/abs-mask/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "uinteger"
*
* @example
* var FLOAT16_ABS_MASK = require( '@stdlib/constants/float16/abs-mask' );
Expand All @@ -44,11 +44,11 @@
* ```
*
* @constant
* @type {uinteger16}

Check warning on line 47 in lib/node_modules/@stdlib/constants/float16/abs-mask/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "uinteger"
* @default 0x7fff
* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}
*/
var FLOAT16_ABS_MASK = 0x7fff>>>0;
var FLOAT16_ABS_MASK = 0x7fff>>>0; // asm type annotation


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* @type {integer16}
* @default 5
*/
var FLOAT16_NUM_EXPONENT_BITS = 5|0;
var FLOAT16_NUM_EXPONENT_BITS = 5|0; // asm type annotation


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* @type {integer16}
* @default 10
*/
var FLOAT16_NUM_SIGNIFICAND_BITS = 10|0;
var FLOAT16_NUM_SIGNIFICAND_BITS = 10|0; // asm type annotation

Check warning on line 42 in lib/node_modules/@stdlib/constants/float16/num-significand-bits/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Identifier name 'FLOAT16_NUM_SIGNIFICAND_BITS' is too long (> 25)


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Mask for the sign bit of a half-precision floating-point number.
*
* @module @stdlib/constants/float16/sign-mask
* @type {uinteger16}

Check warning on line 25 in lib/node_modules/@stdlib/constants/float16/sign-mask/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "uinteger"
*
* @example
* var FLOAT16_SIGN_MASK = require( '@stdlib/constants/float16/sign-mask' );
Expand All @@ -44,11 +44,11 @@
* ```
*
* @constant
* @type {uinteger16}

Check warning on line 47 in lib/node_modules/@stdlib/constants/float16/sign-mask/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "uinteger"
* @default 0x8000
* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}
*/
var FLOAT16_SIGN_MASK = 0x8000>>>0;
var FLOAT16_SIGN_MASK = 0x8000>>>0; // asm type annotation


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Mask for excluding the sign bit of a single-precision floating-point number.
*
* @module @stdlib/constants/float32/abs-mask
* @type {uinteger32}

Check warning on line 25 in lib/node_modules/@stdlib/constants/float32/abs-mask/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "uinteger"
*
* @example
* var FLOAT32_ABS_MASK = require( '@stdlib/constants/float32/abs-mask' );
Expand All @@ -44,11 +44,11 @@
* ```
*
* @constant
* @type {uinteger32}

Check warning on line 47 in lib/node_modules/@stdlib/constants/float32/abs-mask/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "uinteger"
* @default 0x7fffffff
* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}
*/
var FLOAT32_ABS_MASK = 0x7fffffff>>>0;
var FLOAT32_ABS_MASK = 0x7fffffff>>>0; // asm type annotation


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Mask for the sign bit of a single-precision floating-point number.
*
* @module @stdlib/constants/float32/sign-mask
* @type {uinteger32}

Check warning on line 25 in lib/node_modules/@stdlib/constants/float32/sign-mask/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "uinteger"
*
* @example
* var FLOAT32_SIGN_MASK = require( '@stdlib/constants/float32/sign-mask' );
Expand All @@ -44,11 +44,11 @@
* ```
*
* @constant
* @type {uinteger32}

Check warning on line 47 in lib/node_modules/@stdlib/constants/float32/sign-mask/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "uinteger"
* @default 0x80000000
* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}
*/
var FLOAT32_SIGN_MASK = 0x80000000>>>0;
var FLOAT32_SIGN_MASK = 0x80000000>>>0; // asm type annotation


// EXPORTS //
Expand Down