File tree 10 files changed +12
-12
lines changed
lib/node_modules/@stdlib/math/base/assert/is-nan
include/stdlib/math/base/assert
10 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ limitations under the License.
20
20
21
21
# isNaN
22
22
23
- > Test if a numeric value is NaN.
23
+ > Test if a double-precision floating-point numeric value is NaN.
24
24
25
25
<section class =" usage " >
26
26
@@ -32,7 +32,7 @@ var isnan = require( '@stdlib/math/base/assert/is-nan' );
32
32
33
33
#### isnan( x )
34
34
35
- Tests if a ` numeric ` value is ` NaN ` .
35
+ Tests if a double-precision floating-point ` numeric ` value is ` NaN ` .
36
36
37
37
``` javascript
38
38
var bool = isnan ( NaN );
Original file line number Diff line number Diff line change 1
1
2
2
{{alias}}( x )
3
- Tests if a numeric value is `NaN`.
3
+ Tests if a double-precision floating-point numeric value is `NaN`.
4
4
5
5
Parameters
6
6
----------
Original file line number Diff line number Diff line change 19
19
// TypeScript Version: 2.0
20
20
21
21
/**
22
- * Tests if a numeric value is `NaN`.
22
+ * Tests if a double-precision floating-point numeric value is `NaN`.
23
23
*
24
24
* @param x - value to test
25
25
* @returns boolean indicating whether the value is `NaN`
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ extern "C" {
32
32
#endif
33
33
34
34
/**
35
- * Tests if a numeric value is `NaN`.
35
+ * Tests if a double-precision floating-point numeric value is `NaN`.
36
36
*/
37
37
bool stdlib_base_is_nan ( const double x );
38
38
Original file line number Diff line number Diff line change 19
19
'use strict' ;
20
20
21
21
/**
22
- * Test if a numeric value is `NaN`.
22
+ * Test if a double-precision floating-point numeric value is `NaN`.
23
23
*
24
24
* @module @stdlib /math/base/assert/is-nan
25
25
*
Original file line number Diff line number Diff line change 21
21
// MAIN //
22
22
23
23
/**
24
- * Tests if a numeric value is `NaN`.
24
+ * Tests if a double-precision floating-point numeric value is `NaN`.
25
25
*
26
26
* @param {number } x - value to test
27
27
* @returns {boolean } boolean indicating whether the value is `NaN`
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ var addon = require( './../src/addon.node' );
26
26
// MAIN //
27
27
28
28
/**
29
- * Tests if a numeric value is `NaN`.
29
+ * Tests if a double-precision floating-point numeric value is `NaN`.
30
30
*
31
31
* @param {number } x - value to test
32
32
* @returns {boolean } boolean indicating whether the value is `NaN`
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @stdlib/math/base/assert/is-nan" ,
3
3
"version" : " 0.0.0" ,
4
- "description" : " Test if a numeric value is NaN." ,
4
+ "description" : " Test if a double-precision floating-point numeric value is NaN." ,
5
5
"license" : " Apache-2.0" ,
6
6
"author" : {
7
7
"name" : " The Stdlib Authors" ,
Original file line number Diff line number Diff line change 17
17
*/
18
18
19
19
/* *
20
- * Test if a numeric value is `NaN`.
20
+ * Test if a double-precision floating-point numeric value is `NaN`.
21
21
*/
22
22
#include " stdlib/math/base/assert/is_nan.h"
23
23
#include < node_api.h>
30
30
namespace stdlib_math_base_assert_is_nan {
31
31
32
32
/* *
33
- * Tests if a numeric value is `NaN`.
33
+ * Tests if a double-precision floating-point numeric value is `NaN`.
34
34
*
35
35
* ## Notes
36
36
*
Original file line number Diff line number Diff line change 23
23
#include <stdbool.h>
24
24
25
25
/**
26
- * Tests if a numeric value is `NaN`.
26
+ * Tests if a double-precision floating-point numeric value is `NaN`.
27
27
*
28
28
* @param x number
29
29
* @return boolean indicating if an input value is `NaN`
You can’t perform that action at this time.
0 commit comments