Skip to content

Latest commit

 

History

History
141 lines (79 loc) · 2.76 KB

File metadata and controls

141 lines (79 loc) · 2.76 KB

FLOAT16_MAX_BASE10_EXPONENT

The maximum base 10 exponent for a half-precision floating-point number.

Usage

var FLOAT16_MAX_BASE10_EXPONENT = require( '@stdlib/constants/float16/max-base10-exponent' );

FLOAT16_MAX_BASE10_EXPONENT

The maximum base 10 exponent for a half-precision floating-point number.

var bool = ( FLOAT16_MAX_BASE10_EXPONENT === 4 );
// returns true

Examples

var FLOAT16_MAX_BASE10_EXPONENT = require( '@stdlib/constants/float16/max-base10-exponent' );

console.log( FLOAT16_MAX_BASE10_EXPONENT );
// => 4

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT16_MAX_BASE10_EXPONENT

Macro for the maximum base 10 exponent for a half-precision floating-point number.