The minimum biased base 2 exponent for a subnormal double-precision floating-point number.
var FLOAT64_MIN_BASE2_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float64/min-base2-exponent-subnormal' );
The minimum biased base 2 exponent for a subnormal double-precision floating-point number.
var bool = ( FLOAT64_MIN_BASE2_EXPONENT_SUBNORMAL === -1074 );
// returns true
var FLOAT64_MIN_BASE2_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float64/min-base2-exponent-subnormal' );
console.log( FLOAT64_MIN_BASE2_EXPONENT_SUBNORMAL );
// => -1074
#include "stdlib/constants/float64/min_base2_exponent_subnormal.h"
Macro for the minimum biased base 2 exponent for a subnormal double-precision floating-point number.
@stdlib/constants/float64/max-base2-exponent-subnormal
: the maximum biased base 2 exponent for a subnormal double-precision floating-point number.@stdlib/constants/float64/min-base10-exponent-subnormal
: the minimum base 10 exponent for a subnormal double-precision floating-point number.@stdlib/constants/float64/min-base2-exponent
: the minimum biased base 2 exponent for a normal double-precision floating-point number.