Skip to content

Latest commit

 

History

History
100 lines (59 loc) · 2.94 KB

File metadata and controls

100 lines (59 loc) · 2.94 KB

Negative Infinity

Half-precision floating-point negative infinity.

Usage

var FLOAT16_NINF = require( '@stdlib/constants/float16/ninf' );

FLOAT16_NINF

Half-precision floating-point negative infinity.

// FLOAT16_NINF is implicitly promoted to a double-precision floating-point number...
var bool = ( FLOAT16_NINF === -Infinity );
// returns true

Examples

var FLOAT16_NINF = require( '@stdlib/constants/float16/ninf' );

console.log( FLOAT16_NINF );
// => -Infinity

See Also