From 900e5a1979ae00c698237b9a32f3f92b1bd71ad2 Mon Sep 17 00:00:00 2001 From: NEERAJ Date: Tue, 9 Dec 2025 14:26:42 +0530 Subject: [PATCH 1/8] feat: adding initial files --- .../constants/float16/max-ln/README.md | 137 ++++++++++++++++++ .../constants/float16/max-ln/docs/repl.txt | 11 ++ .../float16/max-ln/docs/types/index.d.ts | 33 +++++ .../float16/max-ln/docs/types/test.ts | 28 ++++ .../float16/max-ln/examples/index.js | 24 +++ .../include/stdlib/constants/float16/max_ln.h | 27 ++++ .../constants/float16/max-ln/lib/index.js | 55 +++++++ .../constants/float16/max-ln/mainfest.json | 36 +++++ .../constants/float16/max-ln/package.json | 74 ++++++++++ .../constants/float16/max-ln/test/test.js | 43 ++++++ .../@stdlib/constants/float64/min-ln/lib/i.js | 3 + 11 files changed, 471 insertions(+) create mode 100644 lib/node_modules/@stdlib/constants/float16/max-ln/README.md create mode 100644 lib/node_modules/@stdlib/constants/float16/max-ln/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/constants/float16/max-ln/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/constants/float16/max-ln/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/constants/float16/max-ln/examples/index.js create mode 100644 lib/node_modules/@stdlib/constants/float16/max-ln/include/stdlib/constants/float16/max_ln.h create mode 100644 lib/node_modules/@stdlib/constants/float16/max-ln/lib/index.js create mode 100644 lib/node_modules/@stdlib/constants/float16/max-ln/mainfest.json create mode 100644 lib/node_modules/@stdlib/constants/float16/max-ln/package.json create mode 100644 lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js create mode 100644 lib/node_modules/@stdlib/constants/float64/min-ln/lib/i.js diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/README.md b/lib/node_modules/@stdlib/constants/float16/max-ln/README.md new file mode 100644 index 000000000000..db86ae3f5757 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float16/max-ln/README.md @@ -0,0 +1,137 @@ + + +# FLOAT16_MAX_LN + +> [Natural logarithm][natural-logarithm] of the maximum [half-precision floating-point number][ieee754]. + +
+ +## Usage + +```javascript +var FLOAT16_MAX_LN = require( '@stdlib/constants/float16/max-ln' ); +``` + +#### FLOAT16_MAX_LN + +[Natural logarithm][natural-logarithm] of the maximum [half-precision floating-point number][ieee754]. + +```javascript +var bool = ( FLOAT16_MAX_LN === 11.09375 ); +// returns true +``` + +
+ + + +
+ +## Examples + + + + + +```javascript +var FLOAT16_MAX_LN = require( '@stdlib/constants/float16/max-ln' ); + +console.log( FLOAT16_MAX_LN ); +// => 11.09375 +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/constants/float16/max_ln.h" +``` + +#### STDLIB_CONSTANT_FLOAT16_MAX_LN + +Macro for the [natural logarithm][natural-logarithm] of the maximum [half-precision floating-point number][ieee754]. + +
+ + + + + +
+ +
+ + + + + +
+ +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/docs/repl.txt b/lib/node_modules/@stdlib/constants/float16/max-ln/docs/repl.txt new file mode 100644 index 000000000000..a6aaedcd6535 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float16/max-ln/docs/repl.txt @@ -0,0 +1,11 @@ + +{{alias}} + Natural logarithm of the maximum half-precision floating-point number. + + Examples + -------- + > {{alias}} + 11.09375 + + See Also + -------- diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/docs/types/index.d.ts b/lib/node_modules/@stdlib/constants/float16/max-ln/docs/types/index.d.ts new file mode 100644 index 000000000000..c7b06dbe6222 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float16/max-ln/docs/types/index.d.ts @@ -0,0 +1,33 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +// TypeScript Version: 4.1 + +/** +* Natural logarithm of the maximum half-precision floating-point number. +* +* @example +* var val = FLOAT16_MAX_LN; +* // returns 11.09375 +*/ +declare const FLOAT16_MAX_LN: number; + + +// EXPORTS // + +export = FLOAT16_MAX_LN; diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/docs/types/test.ts b/lib/node_modules/@stdlib/constants/float16/max-ln/docs/types/test.ts new file mode 100644 index 000000000000..4fd00bc15e72 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float16/max-ln/docs/types/test.ts @@ -0,0 +1,28 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import FLOAT16_MAX_LN = require( './index' ); + + +// TESTS // + +// The export is a number... +{ + // eslint-disable-next-line @typescript-eslint/no-unused-expressions + FLOAT16_MAX_LN; // $ExpectType number +} diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/examples/index.js b/lib/node_modules/@stdlib/constants/float16/max-ln/examples/index.js new file mode 100644 index 000000000000..b0b3a03d52c6 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float16/max-ln/examples/index.js @@ -0,0 +1,24 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +var FLOAT16_MAX_LN = require( './../lib' ); + +console.log( FLOAT16_MAX_LN ); +// => 11.09375 diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/include/stdlib/constants/float16/max_ln.h b/lib/node_modules/@stdlib/constants/float16/max-ln/include/stdlib/constants/float16/max_ln.h new file mode 100644 index 000000000000..7e6de5365dd3 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float16/max-ln/include/stdlib/constants/float16/max_ln.h @@ -0,0 +1,27 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#ifndef STDLIB_CONSTANTS_FLOAT16_MAX_LN_H +#define STDLIB_CONSTANTS_FLOAT16_MAX_LN_H + +/** +* Macro for the natural logarithm of the maximum half-precision floating-point number. +*/ +#define STDLIB_CONSTANT_FLOAT16_MAX_LN 11.09375 + +#endif // !STDLIB_CONSTANTS_FLOAT16_MAX_LN_H diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/lib/index.js b/lib/node_modules/@stdlib/constants/float16/max-ln/lib/index.js new file mode 100644 index 000000000000..e3745eb81d5c --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float16/max-ln/lib/index.js @@ -0,0 +1,55 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +/** +* Natural logarithm of the maximum half-precision floating-point number. +* +* @module @stdlib/constants/float16/max-ln +* @type {number} +* +* @example +* var FLOAT16_MAX_LN = require( '@stdlib/constants/float16/max-ln' ); +* // returns 11.09375 +*/ + +// MAIN // + +/** +* Natural logarithm of the maximum half-precision floating-point number. +* +* ## Notes +* +* The natural logarithm of the maximum is given by +* +* ```tex +* \ln \left( 2^{15} (2 - 2^{-10}) \right) +* ``` +* +* @constant +* @type {number} +* @default 11.09375 +* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985} +*/ +var FLOAT16_MAX_LN = 11.09375; + + +// EXPORTS // + +module.exports = FLOAT16_MAX_LN; diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/mainfest.json b/lib/node_modules/@stdlib/constants/float16/max-ln/mainfest.json new file mode 100644 index 000000000000..844d692f6439 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float16/max-ln/mainfest.json @@ -0,0 +1,36 @@ +{ + "options": {}, + "fields": [ + { + "field": "src", + "resolve": true, + "relative": true + }, + { + "field": "include", + "resolve": true, + "relative": true + }, + { + "field": "libraries", + "resolve": false, + "relative": false + }, + { + "field": "libpath", + "resolve": true, + "relative": false + } + ], + "confs": [ + { + "src": [], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [] + } + ] +} diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/package.json b/lib/node_modules/@stdlib/constants/float16/max-ln/package.json new file mode 100644 index 000000000000..1dfddc963a13 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float16/max-ln/package.json @@ -0,0 +1,74 @@ +{ + "name": "@stdlib/constants/float16/max-ln", + "version": "0.0.0", + "description": "Natural logarithm of the maximum half-precision floating-point number.", + "license": "Apache-2.0", + "author": { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + }, + "contributors": [ + { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + } + ], + "main": "./lib", + "directories": { + "doc": "./docs", + "example": "./examples", + "include": "./include", + "lib": "./lib", + "test": "./test" + }, + "types": "./docs/types", + "scripts": {}, + "homepage": "https://github.com/stdlib-js/stdlib", + "repository": { + "type": "git", + "url": "git://github.com/stdlib-js/stdlib.git" + }, + "bugs": { + "url": "https://github.com/stdlib-js/stdlib/issues" + }, + "dependencies": {}, + "devDependencies": {}, + "engines": { + "node": ">=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "stdmath", + "constant", + "const", + "mathematics", + "math", + "max", + "maximum", + "floating-point", + "float16", + "float", + "16bit", + "ieee754", + "flt", + "precision", + "largest", + "greatest", + "natural", + "logarithm", + "log", + "ln" + ] +} diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js b/lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js new file mode 100644 index 000000000000..0932fb673a91 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js @@ -0,0 +1,43 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var tape = require( 'tape' ); +var pow = require( '@stdlib/math/base/special/pow' ); +var ln = require( '@stdlib/math/base/special/ln' ); +var FLOAT16_MAX = require( '@stdlib/constants/float16/max' ); +var float64ToFloat16 = require( '@stdlib/number/float64/base/to-float16' ); +var FLOAT16_MAX_LN = require( './../lib' ); + + +// TESTS // + +tape( 'main export is a number', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof FLOAT16_MAX_LN, 'number', 'main export is a number' ); + t.end(); +}); + +tape( 'export is a single-precision floating-point number equal to the natural logarithm of the max single-precision floating-point number', function test( t ) { + t.strictEqual( FLOAT16_MAX_LN, float64ToFloat16( ln( pow( 2, 15 ) * 2 - pow( 2, -10 ) ) ), 'returns expected value' ); + t.strictEqual( FLOAT16_MAX_LN, float64ToFloat16( ln( FLOAT16_MAX ) ), 'returns expected value' ); + t.end(); +}); diff --git a/lib/node_modules/@stdlib/constants/float64/min-ln/lib/i.js b/lib/node_modules/@stdlib/constants/float64/min-ln/lib/i.js new file mode 100644 index 000000000000..e2f9ebf23de7 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float64/min-ln/lib/i.js @@ -0,0 +1,3 @@ +const float64ToFloat32 = require("@stdlib/number/float64/base/to-float32"); + +console.log( float64ToFloat32( -708.3964185322641 ) ); \ No newline at end of file From e7b3c2b8eb2471bc64b5f61f76f6fc9f1bb0a984 Mon Sep 17 00:00:00 2001 From: NEERAJ Date: Tue, 9 Dec 2025 14:37:18 +0530 Subject: [PATCH 2/8] chore: clean up --- lib/node_modules/@stdlib/constants/float64/min-ln/lib/i.js | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 lib/node_modules/@stdlib/constants/float64/min-ln/lib/i.js diff --git a/lib/node_modules/@stdlib/constants/float64/min-ln/lib/i.js b/lib/node_modules/@stdlib/constants/float64/min-ln/lib/i.js deleted file mode 100644 index e2f9ebf23de7..000000000000 --- a/lib/node_modules/@stdlib/constants/float64/min-ln/lib/i.js +++ /dev/null @@ -1,3 +0,0 @@ -const float64ToFloat32 = require("@stdlib/number/float64/base/to-float32"); - -console.log( float64ToFloat32( -708.3964185322641 ) ); \ No newline at end of file From 96004285acc10f83f199a9009d728700bfa99f4e Mon Sep 17 00:00:00 2001 From: NEERAJ Date: Tue, 9 Dec 2025 14:46:21 +0530 Subject: [PATCH 3/8] chore: udpating tests --- lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js b/lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js index 0932fb673a91..0abafcef2b0c 100644 --- a/lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js +++ b/lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js @@ -37,7 +37,7 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a single-precision floating-point number equal to the natural logarithm of the max single-precision floating-point number', function test( t ) { - t.strictEqual( FLOAT16_MAX_LN, float64ToFloat16( ln( pow( 2, 15 ) * 2 - pow( 2, -10 ) ) ), 'returns expected value' ); + t.strictEqual( FLOAT16_MAX_LN, float64ToFloat16( ln( pow( 2, 15 ) * (2 - pow( 2, -10 ) ) ) ), 'returns expected value' ); t.strictEqual( FLOAT16_MAX_LN, float64ToFloat16( ln( FLOAT16_MAX ) ), 'returns expected value' ); t.end(); }); From 96bb8759265bc4e20bd254c5becdf4e44a941295 Mon Sep 17 00:00:00 2001 From: Athan Date: Tue, 9 Dec 2025 02:39:22 -0800 Subject: [PATCH 4/8] chore: remove file Signed-off-by: Athan --- .../include/stdlib/constants/float16/max_ln.h | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 lib/node_modules/@stdlib/constants/float16/max-ln/include/stdlib/constants/float16/max_ln.h diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/include/stdlib/constants/float16/max_ln.h b/lib/node_modules/@stdlib/constants/float16/max-ln/include/stdlib/constants/float16/max_ln.h deleted file mode 100644 index 7e6de5365dd3..000000000000 --- a/lib/node_modules/@stdlib/constants/float16/max-ln/include/stdlib/constants/float16/max_ln.h +++ /dev/null @@ -1,27 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2025 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -#ifndef STDLIB_CONSTANTS_FLOAT16_MAX_LN_H -#define STDLIB_CONSTANTS_FLOAT16_MAX_LN_H - -/** -* Macro for the natural logarithm of the maximum half-precision floating-point number. -*/ -#define STDLIB_CONSTANT_FLOAT16_MAX_LN 11.09375 - -#endif // !STDLIB_CONSTANTS_FLOAT16_MAX_LN_H From 2863f245cf8b9ec5ac12b1aa7e7d2b68f6db09d0 Mon Sep 17 00:00:00 2001 From: Athan Date: Tue, 9 Dec 2025 02:42:00 -0800 Subject: [PATCH 5/8] chore: remove file Signed-off-by: Athan --- .../constants/float16/max-ln/mainfest.json | 36 ------------------- 1 file changed, 36 deletions(-) delete mode 100644 lib/node_modules/@stdlib/constants/float16/max-ln/mainfest.json diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/mainfest.json b/lib/node_modules/@stdlib/constants/float16/max-ln/mainfest.json deleted file mode 100644 index 844d692f6439..000000000000 --- a/lib/node_modules/@stdlib/constants/float16/max-ln/mainfest.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "options": {}, - "fields": [ - { - "field": "src", - "resolve": true, - "relative": true - }, - { - "field": "include", - "resolve": true, - "relative": true - }, - { - "field": "libraries", - "resolve": false, - "relative": false - }, - { - "field": "libpath", - "resolve": true, - "relative": false - } - ], - "confs": [ - { - "src": [], - "include": [ - "./include" - ], - "libraries": [], - "libpath": [], - "dependencies": [] - } - ] -} From f107a697ca709c90ac6ec21d21f6efe442140764 Mon Sep 17 00:00:00 2001 From: Athan Date: Tue, 9 Dec 2025 02:42:32 -0800 Subject: [PATCH 6/8] chore: remove dir Signed-off-by: Athan --- lib/node_modules/@stdlib/constants/float16/max-ln/package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/package.json b/lib/node_modules/@stdlib/constants/float16/max-ln/package.json index 1dfddc963a13..5b183ea9c7b4 100644 --- a/lib/node_modules/@stdlib/constants/float16/max-ln/package.json +++ b/lib/node_modules/@stdlib/constants/float16/max-ln/package.json @@ -17,7 +17,6 @@ "directories": { "doc": "./docs", "example": "./examples", - "include": "./include", "lib": "./lib", "test": "./test" }, From b19b75ee9f84a7ff0402ca194ba4f034c5669193 Mon Sep 17 00:00:00 2001 From: Athan Date: Tue, 9 Dec 2025 02:43:09 -0800 Subject: [PATCH 7/8] style: add space Signed-off-by: Athan --- lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js b/lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js index 0abafcef2b0c..d35ae059c9e0 100644 --- a/lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js +++ b/lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js @@ -37,7 +37,7 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a single-precision floating-point number equal to the natural logarithm of the max single-precision floating-point number', function test( t ) { - t.strictEqual( FLOAT16_MAX_LN, float64ToFloat16( ln( pow( 2, 15 ) * (2 - pow( 2, -10 ) ) ) ), 'returns expected value' ); + t.strictEqual( FLOAT16_MAX_LN, float64ToFloat16( ln( pow( 2, 15 ) * ( 2 - pow( 2, -10 ) ) ) ), 'returns expected value' ); t.strictEqual( FLOAT16_MAX_LN, float64ToFloat16( ln( FLOAT16_MAX ) ), 'returns expected value' ); t.end(); }); From 84ae6b3845c4f180331ab2cb4da355d11019d4f8 Mon Sep 17 00:00:00 2001 From: Athan Date: Tue, 9 Dec 2025 02:43:55 -0800 Subject: [PATCH 8/8] docs: remove section Signed-off-by: Athan --- .../constants/float16/max-ln/README.md | 54 ------------------- 1 file changed, 54 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/README.md b/lib/node_modules/@stdlib/constants/float16/max-ln/README.md index db86ae3f5757..9e37db2d99fa 100644 --- a/lib/node_modules/@stdlib/constants/float16/max-ln/README.md +++ b/lib/node_modules/@stdlib/constants/float16/max-ln/README.md @@ -62,60 +62,6 @@ console.log( FLOAT16_MAX_LN ); - - -* * * - -
- -## C APIs - - - -
- -
- - - - - -
- -### Usage - -```c -#include "stdlib/constants/float16/max_ln.h" -``` - -#### STDLIB_CONSTANT_FLOAT16_MAX_LN - -Macro for the [natural logarithm][natural-logarithm] of the maximum [half-precision floating-point number][ieee754]. - -
- - - - - -
- -
- - - - - -
- -
- - - -
- - -