FLOAT32_MIN_BASE2_EXPONENT

The minimum biased base 2 exponent for a normal single-precision floating-point number.

Usage

var FLOAT32_MIN_BASE2_EXPONENT = require( '@stdlib/constants/float32/min-base2-exponent' );

FLOAT32_MIN_BASE2_EXPONENT

The minimum biased base 2 exponent for a normal single-precision floating-point number.

var bool = ( FLOAT32_MIN_BASE2_EXPONENT === -126 );
// returns true

Examples

var FLOAT32_MIN_BASE2_EXPONENT = require( '@stdlib/constants/float32/min-base2-exponent' );

console.log( FLOAT32_MIN_BASE2_EXPONENT );
// => -126

C APIs

Usage

#include "stdlib/constants/float32/min_base2_exponent.h"

STDLIB_CONSTANT_FLOAT32_MIN_BASE2_EXPONENT

Macro for the minimum biased base 2 exponent for a normal single-precision floating-point number.

Did you find this page helpful?