Skip to content

Latest commit

 

History

History
139 lines (78 loc) · 2.77 KB

File metadata and controls

139 lines (78 loc) · 2.77 KB

FLOAT16_MIN_BASE2_EXPONENT

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

Usage

var FLOAT16_MIN_BASE2_EXPONENT = require( '@stdlib/constants/float16/min-base2-exponent' );

FLOAT16_MIN_BASE2_EXPONENT

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

var bool = ( FLOAT16_MIN_BASE2_EXPONENT === -14 );
// returns true

Examples

var FLOAT16_MIN_BASE2_EXPONENT = require( '@stdlib/constants/float16/min-base2-exponent' );

console.log( FLOAT16_MIN_BASE2_EXPONENT );
// => -14

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT16_MIN_BASE2_EXPONENT

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