Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

NINF

Double-precision floating-point negative infinity.

Usage

var FLOAT64_NINF = require( '@stdlib/constants/float64/ninf' );

FLOAT64_NINF

Double-precision floating-point negative infinity.

var bool = ( FLOAT64_NINF === -Infinity );
// returns true

Examples

var FLOAT64_NINF = require( '@stdlib/constants/float64/ninf' );

console.log( FLOAT64_NINF );
// => -Infinity

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT64_NINF

Macro for double-precision floating-point negative infinity.


See Also