FLOAT64_MIN_BASE2_EXPONENT
The minimum biased base 2 exponent for a normal double-precision floating-point number.
Usage
var FLOAT64_MIN_BASE2_EXPONENT = require( '@stdlib/constants/float64/min-base2-exponent' );
FLOAT64_MIN_BASE2_EXPONENT
The minimum biased base 2 exponent for a normal double-precision floating-point number.
var bool = ( FLOAT64_MIN_BASE2_EXPONENT === -1022 );
// returns true
Examples
var FLOAT64_MIN_BASE2_EXPONENT = require( '@stdlib/constants/float64/min-base2-exponent' );
console.log( FLOAT64_MIN_BASE2_EXPONENT );
// => -1022
C APIs
Usage
#include "stdlib/constants/float64/min_base2_exponent.h"
STDLIB_CONSTANT_FLOAT64_MIN_BASE2_EXPONENT
Macro for the minimum biased base 2 exponent for a normal double-precision floating-point number.