FLOAT64_SMALLEST_NORMAL
Smallest positive normalized double-precision floating-point number.
Usage
var FLOAT64_SMALLEST_NORMAL = require( '@stdlib/constants/float64/smallest-normal' );
FLOAT64_SMALLEST_NORMAL
Smallest positive normalized double-precision floating-point number.
var bool = ( FLOAT64_SMALLEST_NORMAL === 2.2250738585072014e-308 );
// returns true
Examples
var FLOAT64_SMALLEST_NORMAL = require( '@stdlib/constants/float64/smallest-normal' );
console.log( FLOAT64_SMALLEST_NORMAL );
// => 2.2250738585072014e-308
C APIs
Usage
#include "stdlib/constants/float64/smallest_normal.h"
STDLIB_CONSTANT_FLOAT64_SMALLEST_NORMAL
Macro for the smallest positive normalized double-precision floating-point number.