The Euler–Mascheroni constant γ is defined as the limiting difference between the harmonic series and the natural logarithm:
var FLOAT16_EULER_GAMMA = require( '@stdlib/constants/float16/eulergamma' );The Euler–Mascheroni constant.
var bool = ( FLOAT16_EULER_GAMMA === 0.5771484375 );
// returns trueThe value is approximately 0.5772156649015328606... in double precision. Due to the limited precision of half-precision floating-point format (float16), the constant is rounded to 0.5771484375.
var FLOAT16_EULER_GAMMA = require( '@stdlib/constants/float16/eulergamma' );
console.log( FLOAT16_EULER_GAMMA );
// => 0.5771484375