JSPM

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

0.0.8
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 34051
  • Score
    100M100P100Q189746F
  • License Apache-2.0

Maximum safe double-precision floating-point integer.

Package Exports

  • @stdlib/constants-float64-max-safe-integer
  • @stdlib/constants-float64-max-safe-integer/lib/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@stdlib/constants-float64-max-safe-integer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

FLOAT64_MAX_SAFE_INTEGER

NPM version Build Status Coverage Status

Maximum safe double-precision floating-point integer.

Installation

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

Usage

var FLOAT64_MAX_SAFE_INTEGER = require( '@stdlib/constants-float64-max-safe-integer' );

FLOAT64_MAX_SAFE_INTEGER

The maximum safe double-precision floating-point integer.

var bool = ( FLOAT64_MAX_SAFE_INTEGER === 9007199254740991 );
// 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 FLOAT64_MAX_SAFE_INTEGER = require( '@stdlib/constants-float64-max-safe-integer' );

var max;
var x;
var i;

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

C APIs

Usage

#include "stdlib/constants/float64/max_safe_integer.h"

STDLIB_CONSTANT_FLOAT64_MAX_SAFE_INTEGER

Macro for the maximum safe double-precision floating-point integer.


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 © 2016-2022. The Stdlib Authors.