Skip to content

Latest commit

 

History

History
139 lines (78 loc) · 2.87 KB

File metadata and controls

139 lines (78 loc) · 2.87 KB

FLOAT16_MAX_BASE2_EXPONENT_SUBNORMAL

The maximum biased base 2 exponent for a subnormal half-precision floating-point number.

Usage

var FLOAT16_MAX_BASE2_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float16/max-base2-exponent-subnormal' );

FLOAT16_MAX_BASE2_EXPONENT_SUBNORMAL

The maximum biased base 2 exponent for a subnormal half-precision floating-point number.

var bool = ( FLOAT16_MAX_BASE2_EXPONENT_SUBNORMAL === -15 );
// returns true

Examples

var FLOAT16_MAX_BASE2_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float16/max-base2-exponent-subnormal' );

console.log( FLOAT16_MAX_BASE2_EXPONENT_SUBNORMAL );
// => -15

C APIs

Usage

#include "stdlib/constants/float16/max_base2_exponent_subnormal.h"

STDLIB_CONSTANT_FLOAT16_MAX_BASE2_EXPONENT_SUBNORMAL

Macro for the maximum biased base 2 exponent for a subnormal half-precision floating-point number.