FLOAT32_MAX_BASE2_EXPONENT_SUBNORMAL
The maximum biased base 2 exponent for a subnormal single-precision floating-point number.
Usage
var FLOAT32_MAX_BASE2_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float32/max-base2-exponent-subnormal' );
FLOAT32_MAX_BASE2_EXPONENT_SUBNORMAL
The maximum biased base 2 exponent for a subnormal single-precision floating-point number.
var bool = ( FLOAT32_MAX_BASE2_EXPONENT_SUBNORMAL === -127 );
// returns true
Examples
var FLOAT32_MAX_BASE2_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float32/max-base2-exponent-subnormal' );
console.log( FLOAT32_MAX_BASE2_EXPONENT_SUBNORMAL );
// => -127
C APIs
Usage
#include "stdlib/constants/float32/max_base2_exponent_subnormal.h"
STDLIB_CONSTANT_FLOAT32_MAX_BASE2_EXPONENT_SUBNORMAL
Macro for the maximum biased base 2 exponent for a subnormal single-precision floating-point number.