PINF

Double-precision floating-point positive infinity.

Usage

var FLOAT64_PINF = require( '@stdlib/constants/float64/pinf' );

FLOAT64_PINF

Double-precision floating-point positive infinity.

var bool = ( FLOAT64_PINF === Infinity );
// returns true

Examples

var FLOAT64_PINF = require( '@stdlib/constants/float64/pinf' );

console.log( FLOAT64_PINF );
// => Infinity

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT64_PINF

Macro for double-precision floating-point positive infinity.

Did you find this page helpful?