isNegativeZerof

Test if a single-precision floating-point numeric value is negative zero.

Usage

var isNegativeZerof = require( '@stdlib/math/base/assert/is-negative-zerof' );

isNegativeZerof( x )

Tests if a single-precision floating-point numeric value is negative zero.

var bool = isNegativeZerof( -0.0 );
// returns true

bool = isNegativeZerof( 0.0 );
// returns false

Examples

var isNegativeZerof = require( '@stdlib/math/base/assert/is-negative-zerof' );

var bool = isNegativeZerof( -0.0 );
// returns true

bool = isNegativeZerof( 0.0 );
// returns false

bool = isNegativeZerof( 5.0 );
// returns false

bool = isNegativeZerof( -1.0 );
// returns false

bool = isNegativeZerof( NaN );
// returns false
Did you find this page helpful?