File tree Expand file tree Collapse file tree 12 files changed +23
-1
lines changed
lib/node_modules/@stdlib/constants/float64
high-word-significand-mask
max-base10-exponent-subnormal
max-base2-exponent-subnormal
min-base10-exponent-subnormal
min-base2-exponent-subnormal Expand file tree Collapse file tree 12 files changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ limitations under the License.
29
29
<!-- <equation class="equation" label="eq:catalan_constant" align="center" raw="C = \sum_{n=0}^{\infty} \frac{(-1)^{n}}{(2n+1)^2} = \frac{1}{1^2} - \frac{1}{3^2} + \frac{1}{5^2} - \frac{1}{7^2} + \cdots" alt="Catalan's constant"> -->
30
30
31
31
<div class =" equation " align =" center " data-raw-text =" C = \sum_{n=0}^{\infty} \frac{(-1)^{n}}{(2n+1)^2} = \frac{1}{1^2} - \frac{1}{3^2} + \frac{1}{5^2} - \frac{1}{7^2} + \cdots " data-equation =" eq:catalan_constant " >
32
- <img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@7e0a95722efd9c771b129597380c63dc6715508b /lib/node_modules/@stdlib/constants/float64/catalan/docs/img/equation_catalan_constant.svg" alt="Catalan's constant">
32
+ <img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@5d87cc7cb2c58aeb732872f89562d2c89571cc8a /lib/node_modules/@stdlib/constants/float64/catalan/docs/img/equation_catalan_constant.svg" alt="Catalan's constant">
33
33
<br>
34
34
</div >
35
35
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ var FLOAT64_HIGH_WORD_EXPONENT_MASK = require( '@stdlib/constants/float64/high-w
36
36
37
37
High word mask for the exponent of a [ double-precision floating-point number] [ ieee754 ] .
38
38
39
+ <!-- eslint-disable id-length -->
40
+
39
41
``` javascript
40
42
// 0x7ff00000 = 2146435072 => 0 11111111111 00000000000000000000
41
43
var bool = ( FLOAT64_HIGH_WORD_EXPONENT_MASK === 0x7ff00000 );
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ var FLOAT64_HIGH_WORD_SIGNIFICAND_MASK = require( '@stdlib/constants/float64/hig
36
36
37
37
High word mask for the significand of a [ double-precision floating-point number] [ ieee754 ] .
38
38
39
+ <!-- eslint-disable id-length -->
40
+
39
41
``` javascript
40
42
// 0x000fffff = 1048575 => 0 00000000000 11111111111111111111
41
43
var bool = ( FLOAT64_HIGH_WORD_SIGNIFICAND_MASK === 0x000fffff );
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ var FLOAT64_MAX_BASE10_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float64/
36
36
37
37
The maximum base 10 exponent for a subnormal [ double-precision floating-point number] [ ieee754 ] .
38
38
39
+ <!-- eslint-disable id-length -->
40
+
39
41
``` javascript
40
42
var bool = ( FLOAT64_MAX_BASE10_EXPONENT_SUBNORMAL === - 308 );
41
43
// returns true
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ var FLOAT64_MAX_BASE10_EXPONENT = require( '@stdlib/constants/float64/max-base10
36
36
37
37
The maximum base 10 exponent for a [ double-precision floating-point number] [ ieee754 ] .
38
38
39
+ <!-- eslint-disable id-length -->
40
+
39
41
``` javascript
40
42
var bool = ( FLOAT64_MAX_BASE10_EXPONENT === 308 );
41
43
// returns true
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ var FLOAT64_MAX_BASE2_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float64/m
36
36
37
37
The maximum biased base 2 exponent for a subnormal [ double-precision floating-point number] [ ieee754 ] .
38
38
39
+ <!-- eslint-disable id-length -->
40
+
39
41
``` javascript
40
42
var bool = ( FLOAT64_MAX_BASE2_EXPONENT_SUBNORMAL === - 1023 );
41
43
// returns true
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ var FLOAT64_MAX_BASE2_EXPONENT = require( '@stdlib/constants/float64/max-base2-e
36
36
37
37
The maximum biased base 2 exponent for a [ double-precision floating-point number] [ ieee754 ] .
38
38
39
+ <!-- eslint-disable id-length -->
40
+
39
41
``` javascript
40
42
var bool = ( FLOAT64_MAX_BASE2_EXPONENT === 1023 );
41
43
// returns true
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ var FLOAT64_MAX_SAFE_NTH_FIBONACCI = require( '@stdlib/constants/float64/max-saf
36
36
37
37
The maximum [ safe] [ safe-integers ] nth [ Fibonacci number] [ fibonacci-number ] when stored in [ double-precision floating-point] [ ieee754 ] format.
38
38
39
+ <!-- eslint-disable id-length -->
40
+
39
41
``` javascript
40
42
var bool = ( FLOAT64_MAX_SAFE_NTH_FIBONACCI === 78 );
41
43
// returns true
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ var FLOAT64_MIN_BASE10_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float64/
36
36
37
37
The minimum base 10 exponent for a subnormal [ double-precision floating-point number] [ ieee754 ] .
38
38
39
+ <!-- eslint-disable id-length -->
40
+
39
41
``` javascript
40
42
var bool = ( FLOAT64_MIN_BASE10_EXPONENT_SUBNORMAL === - 324 );
41
43
// returns true
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ var FLOAT64_MIN_BASE10_EXPONENT = require( '@stdlib/constants/float64/min-base10
36
36
37
37
The minimum base 10 exponent for a normal [ double-precision floating-point number] [ ieee754 ] .
38
38
39
+ <!-- eslint-disable id-length -->
40
+
39
41
``` javascript
40
42
var bool = ( FLOAT64_MIN_BASE10_EXPONENT === - 308 );
41
43
// returns true
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ var FLOAT64_MIN_BASE2_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float64/m
36
36
37
37
The minimum biased base 2 exponent for a subnormal [ double-precision floating-point number] [ ieee754 ] .
38
38
39
+ <!-- eslint-disable id-length -->
40
+
39
41
``` javascript
40
42
var bool = ( FLOAT64_MIN_BASE2_EXPONENT_SUBNORMAL === - 1074 );
41
43
// returns true
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ var FLOAT64_MIN_BASE2_EXPONENT = require( '@stdlib/constants/float64/min-base2-e
36
36
37
37
The minimum biased base 2 exponent for a normal [ double-precision floating-point number] [ ieee754 ] .
38
38
39
+ <!-- eslint-disable id-length -->
40
+
39
41
``` javascript
40
42
var bool = ( FLOAT64_MIN_BASE2_EXPONENT === - 1022 );
41
43
// returns true
You can’t perform that action at this time.
0 commit comments