Skip to content

Latest commit

 

History

History

float32-max-safe-integer

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Max Safe Integer

Maximum safe single-precision floating-point integer.

Usage

var FLOAT32_MAX_SAFE_INTEGER = require( '@stdlib/math/constants/float32-max-safe-integer' );

FLOAT32_MAX_SAFE_INTEGER

The maximum safe single-precision floating-point integer.

var bool = ( FLOAT32_MAX_SAFE_INTEGER === 16777215 );
// 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 FLOAT32_MAX_SAFE_INTEGER = require( '@stdlib/math/constants/float32-max-safe-integer' );

var max;
var x;
var i;

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