FLOAT64_PRECISION

Effective number of bits in the significand of a double-precision floating-point number.

Usage

var FLOAT64_PRECISION = require( '@stdlib/constants/float64/precision' );

FLOAT64_PRECISION

Effective number of bits in the significand of a double-precision floating-point number.

var bool = ( FLOAT64_PRECISION === 53 ); // including implicit bit
// returns true

Examples

var FLOAT64_PRECISION = require( '@stdlib/constants/float64/precision' );

console.log( FLOAT64_PRECISION );
// => 53

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT64_PRECISION

Macro for the effective number of bits in the significand of a double-precision floating-point number.

Did you find this page helpful?