The maximum biased base 2 exponent for a double-precision floating-point number.
var FLOAT64_MAX_BASE2_EXPONENT = require( '@stdlib/constants/float64/max-base2-exponent' );
The maximum biased base 2 exponent for a double-precision floating-point number.
var bool = ( FLOAT64_MAX_BASE2_EXPONENT === 1023 );
// returns true
var FLOAT64_MAX_BASE2_EXPONENT = require( '@stdlib/constants/float64/max-base2-exponent' );
console.log( FLOAT64_MAX_BASE2_EXPONENT );
// => 1023
#include "stdlib/constants/float64/max_base2_exponent.h"
Macro for the maximum biased base 2 exponent for a double-precision floating-point number.
@stdlib/constants/float64/max-base10-exponent
: the maximum base 10 exponent for a 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-base2-exponent
: the minimum biased base 2 exponent for a normal double-precision floating-point number.