Effective number of bits in the significand of a half-precision floating-point number.
var FLOAT16_PRECISION = require( '@stdlib/constants/float16/precision' );
Effective number of bits in the significand of a half-precision floating-point number.
var bool = ( FLOAT16_PRECISION === 11 ); // including implicit bit
// returns true
var FLOAT16_PRECISION = require( '@stdlib/constants/float16/precision' );
console.log( FLOAT16_PRECISION );
// => 11
@stdlib/constants/float32/precision
: effective number of bits in the significand of a single-precision floating-point number.@stdlib/constants/float64/precision
: effective number of bits in the significand of a double-precision floating-point number.