Skip to content

Latest commit

 

History

History
96 lines (56 loc) · 2.47 KB

File metadata and controls

96 lines (56 loc) · 2.47 KB

Max Value

Maximum half-precision floating-point number.

Usage

var FLOAT16_MAX = require( '@stdlib/constants/float16/max' );

FLOAT16_MAX

Maximum single-precision floating-point number.

var bool = (FLOAT16_MAX === 65504.0 );
// returns true

Examples

var FLOAT16_MAX = require( '@stdlib/constants/float16/max' );

console.log( FLOAT16_MAX );
// => 65504.0

See Also