Skip to content

Commit 154ff94

Browse files
committed
feat: add constants to \float64\ namespace
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 776887e commit 154ff94

File tree

1 file changed

+60
-0
lines changed
  • lib/node_modules/@stdlib/constants/float64/lib

1 file changed

+60
-0
lines changed

lib/node_modules/@stdlib/constants/float64/lib/index.js

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,26 @@ setReadOnly( constants, 'MAX_BASE10_EXPONENT_SUBNORMAL', require( '@stdlib/const
346346
*/
347347
setReadOnly( constants, 'MAX_LN', require( '@stdlib/constants/float64/max-ln' ) );
348348

349+
/**
350+
* @name MAX_NTH_DOUBLE_FACTORIAL
351+
* @memberof constants
352+
* @readonly
353+
* @constant
354+
* @type {number}
355+
* @see {@link module:@stdlib/constants/float64/max-nth-double-factorial}
356+
*/
357+
setReadOnly( constants, 'MAX_NTH_DOUBLE_FACTORIAL', require( '@stdlib/constants/float64/max-nth-double-factorial' ) );
358+
359+
/**
360+
* @name MAX_NTH_FACTORIAL
361+
* @memberof constants
362+
* @readonly
363+
* @constant
364+
* @type {number}
365+
* @see {@link module:@stdlib/constants/float64/max-nth-factorial}
366+
*/
367+
setReadOnly( constants, 'MAX_NTH_FACTORIAL', require( '@stdlib/constants/float64/max-nth-factorial' ) );
368+
349369
/**
350370
* @name MAX_SAFE_FIBONACCI
351371
* @memberof constants
@@ -376,6 +396,26 @@ setReadOnly( constants, 'MAX_SAFE_INTEGER', require( '@stdlib/constants/float64/
376396
*/
377397
setReadOnly( constants, 'MAX_SAFE_LUCAS', require( '@stdlib/constants/float64/max-safe-lucas' ) );
378398

399+
/**
400+
* @name MAX_SAFE_NTH_DOUBLE_FACTORIAL
401+
* @memberof constants
402+
* @readonly
403+
* @constant
404+
* @type {number}
405+
* @see {@link module:@stdlib/constants/float64/max-safe-nth-double-factorial}
406+
*/
407+
setReadOnly( constants, 'MAX_SAFE_NTH_DOUBLE_FACTORIAL', require( '@stdlib/constants/float64/max-safe-nth-double-factorial' ) );
408+
409+
/**
410+
* @name MAX_SAFE_NTH_FACTORIAL
411+
* @memberof constants
412+
* @readonly
413+
* @constant
414+
* @type {number}
415+
* @see {@link module:@stdlib/constants/float64/max-safe-nth-factorial}
416+
*/
417+
setReadOnly( constants, 'MAX_SAFE_NTH_FACTORIAL', require( '@stdlib/constants/float64/max-safe-nth-factorial' ) );
418+
379419
/**
380420
* @name MAX_SAFE_NTH_FIBONACCI
381421
* @memberof constants
@@ -396,6 +436,16 @@ setReadOnly( constants, 'MAX_SAFE_NTH_FIBONACCI', require( '@stdlib/constants/fl
396436
*/
397437
setReadOnly( constants, 'MAX_SAFE_NTH_LUCAS', require( '@stdlib/constants/float64/max-safe-nth-lucas' ) );
398438

439+
/**
440+
* @name MAX_SAFE_NTH_TRIBONACCI
441+
* @memberof constants
442+
* @readonly
443+
* @constant
444+
* @type {number}
445+
* @see {@link module:@stdlib/constants/float64/max-safe-nth-tribonacci}
446+
*/
447+
setReadOnly( constants, 'MAX_SAFE_NTH_TRIBONACCI', require( '@stdlib/constants/float64/max-safe-nth-tribonacci' ) );
448+
399449
/**
400450
* @name MIN_BASE2_EXPONENT
401451
* @memberof constants
@@ -486,6 +536,16 @@ setReadOnly( constants, 'NINF', require( '@stdlib/constants/float64/ninf' ) );
486536
*/
487537
setReadOnly( constants, 'NUM_BYTES', require( '@stdlib/constants/float64/num-bytes' ) );
488538

539+
/**
540+
* @name NUM_HIGH_WORD_SIGNIFICAND_BITS
541+
* @memberof constants
542+
* @readonly
543+
* @constant
544+
* @type {number}
545+
* @see {@link module:@stdlib/constants/float64/num-high-word-significand-bits}
546+
*/
547+
setReadOnly( constants, 'NUM_HIGH_WORD_SIGNIFICAND_BITS', require( '@stdlib/constants/float64/num-high-word-significand-bits' ) );
548+
489549
/**
490550
* @name PHI
491551
* @memberof constants

0 commit comments

Comments
 (0)