File tree Expand file tree Collapse file tree 13 files changed +16
-15
lines changed
Expand file tree Collapse file tree 13 files changed +16
-15
lines changed Original file line number Diff line number Diff line change @@ -164,6 +164,7 @@ A total of 19 issues were closed in this release:
164164
165165<details >
166166
167+ - [ ` 63a9af5 ` ] ( https://github.com/stdlib-js/stdlib/commit/63a9af59c1d602d79ae593bb98346e991b0f2874 ) - ** docs:** update descriptions _ (by Athan Reines)_
167168- [ ` 2d6416a ` ] ( https://github.com/stdlib-js/stdlib/commit/2d6416add43fe03624335438d20fb293bf78405a ) - ** feat:** add ` number/float16/base/assert/is-negative-zero ` [ (#9623 )] ( https://github.com/stdlib-js/stdlib/pull/9623 ) _ (by Neeraj Pathak)_
168169- [ ` aebc415 ` ] ( https://github.com/stdlib-js/stdlib/commit/aebc415cd7b1579ef8935576eb4fae94a4277846 ) - ** feat:** add ` number/float16/base/assert/is-nan ` [ (#9625 )] ( https://github.com/stdlib-js/stdlib/pull/9625 ) _ (by Lokesh Ranjan)_
169170- [ ` 056ece8 ` ] ( https://github.com/stdlib-js/stdlib/commit/056ece8dfb301d321667f266232a4c9833f4380e ) - ** chore:** update meta data _ (by Athan Reines)_
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ limitations under the License.
2020
2121# isnan
2222
23- > Test if a half-precision floating-point numeric value is NaN.
23+ > Test if a half-precision floating-point number is NaN.
2424
2525<section class =" usage " >
2626
@@ -32,7 +32,7 @@ var isnan = require( '@stdlib/number/float16/base/assert/is-nan' );
3232
3333#### isnan( x )
3434
35- Tests if a half-precision floating-point ` numeric ` value is ` NaN ` .
35+ Tests if a half-precision floating-point number is ` NaN ` .
3636
3737``` javascript
3838var bool = isnan ( NaN );
Original file line number Diff line number Diff line change 11
22{{alias}}( x )
3- Tests if a half-precision floating-point numeric value is `NaN`.
3+ Tests if a half-precision floating-point number is `NaN`.
44
55 Parameters
66 ----------
Original file line number Diff line number Diff line change 1919// TypeScript Version: 4.1
2020
2121/**
22- * Tests if a half-precision floating-point numeric value is `NaN`.
22+ * Tests if a half-precision floating-point number is `NaN`.
2323*
2424* @param x - value to test
2525* @returns boolean indicating whether the value is `NaN`
Original file line number Diff line number Diff line change 1919'use strict' ;
2020
2121/**
22- * Test if a half-precision floating-point numeric value is `NaN`.
22+ * Test if a half-precision floating-point number is `NaN`.
2323*
2424* @module @stdlib /number/float16/base/assert/is-nan
2525*
Original file line number Diff line number Diff line change 2121// MAIN //
2222
2323/**
24- * Tests if a half-precision floating-point numeric value is `NaN`.
24+ * Tests if a half-precision floating-point number is `NaN`.
2525*
2626* @param {number } x - value to test
2727* @returns {boolean } boolean indicating whether the value is `NaN`
Original file line number Diff line number Diff line change 11{
22 "name" : " @stdlib/number/float16/base/assert/is-nan" ,
33 "version" : " 0.0.0" ,
4- "description" : " Test if a half-precision floating-point numeric value is NaN." ,
4+ "description" : " Test if a half-precision floating-point number is NaN." ,
55 "license" : " Apache-2.0" ,
66 "author" : {
77 "name" : " The Stdlib Authors" ,
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ limitations under the License.
2020
2121# isNegativeZero
2222
23- > Test if a half-precision floating-point numeric value is negative zero.
23+ > Test if a half-precision floating-point number is negative zero.
2424
2525<section class =" usage " >
2626
@@ -32,7 +32,7 @@ var isNegativeZero = require( '@stdlib/number/float16/base/assert/is-negative-ze
3232
3333#### isNegativeZero( x )
3434
35- Tests if a half-precision floating-point ` numeric ` value is negative zero.
35+ Tests if a half-precision floating-point number is negative zero.
3636
3737``` javascript
3838var bool = isNegativeZero ( - 0.0 );
Original file line number Diff line number Diff line change 11
22{{alias}}( x )
3- Tests if a half-precision floating-point numeric value is negative zero.
3+ Tests if a half-precision floating-point number is negative zero.
44
55 Parameters
66 ----------
Original file line number Diff line number Diff line change 1919// TypeScript Version: 4.1
2020
2121/**
22- * Tests if a half-precision floating-point numeric value is negative zero.
22+ * Tests if a half-precision floating-point number is negative zero.
2323*
2424* @param x - value to test
2525* @returns boolean indicating whether the value is negative zero
You can’t perform that action at this time.
0 commit comments