The maximum biased base 2 exponent for a subnormal half-precision floating-point number.
var FLOAT16_MAX_BASE2_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float16/max-base2-exponent-subnormal' );The maximum biased base 2 exponent for a subnormal half-precision floating-point number.
var bool = ( FLOAT16_MAX_BASE2_EXPONENT_SUBNORMAL === -15 );
// returns truevar FLOAT16_MAX_BASE2_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float16/max-base2-exponent-subnormal' );
console.log( FLOAT16_MAX_BASE2_EXPONENT_SUBNORMAL );
// => -15#include "stdlib/constants/float16/max_base2_exponent_subnormal.h"Macro for the maximum biased base 2 exponent for a subnormal half-precision floating-point number.