@stdlib/constants-float16-max-safe-integer

Maximum safe half-precision floating-point integer.

Usage no npm install needed!

<script type="module">
  import stdlibConstantsFloat16MaxSafeInteger from 'https://cdn.skypack.dev/@stdlib/constants-float16-max-safe-integer';
</script>

README

Max Safe Integer

NPM version Build Status Coverage Status dependencies

Maximum safe half-precision floating-point integer.

Installation

npm install @stdlib/constants-float16-max-safe-integer

Usage

var FLOAT16_MAX_SAFE_INTEGER = require( '@stdlib/constants-float16-max-safe-integer' );

FLOAT16_MAX_SAFE_INTEGER

The maximum safe half-precision floating-point integer.

var bool = ( FLOAT16_MAX_SAFE_INTEGER === 2047 );
// returns true

Examples

var randu = require( '@stdlib/random-base-randu' );
var round = require( '@stdlib/math-base-special-round' );
var pow = require( '@stdlib/math-base-special-pow' );
var FLOAT16_MAX_SAFE_INTEGER = require( '@stdlib/constants-float16-max-safe-integer' );

var max;
var x;
var i;

max = pow( 2.0, 13 );
for ( i = 0; i < 100; i++ ) {
    x = round( randu() * max );
    if ( x > FLOAT16_MAX_SAFE_INTEGER ) {
        console.log( 'Unsafe: %d', x );
    } else {
        console.log( 'Safe: %d', x );
    }
}

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2021. The Stdlib Authors.