@stdlib/math-base-assert-is-negative-zerof

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

Usage no npm install needed!

<script type="module">
  import stdlibMathBaseAssertIsNegativeZerof from 'https://cdn.skypack.dev/@stdlib/math-base-assert-is-negative-zerof';
</script>

README

isNegativeZerof

NPM version Build Status Coverage Status

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

Installation

npm install @stdlib/math-base-assert-is-negative-zerof

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

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2022. The Stdlib Authors.