From bf57cdbf9981edfa946ecf73244fa20e05179966 Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Mon, 11 Mar 2024 22:57:39 +0000 Subject: [PATCH] Update artifacts --- math/base/special/acsch/coverage.ndjson | 1 + math/base/special/acsch/index.html | 146 +++++++++++++ math/base/special/acsch/index.js.html | 223 ++++++++++++++++++++ math/base/special/acsch/main.js.html | 244 ++++++++++++++++++++++ math/base/special/acsch/native.js.html | 259 ++++++++++++++++++++++++ 5 files changed, 873 insertions(+) create mode 100644 math/base/special/acsch/coverage.ndjson create mode 100644 math/base/special/acsch/index.html create mode 100644 math/base/special/acsch/index.js.html create mode 100644 math/base/special/acsch/main.js.html create mode 100644 math/base/special/acsch/native.js.html diff --git a/math/base/special/acsch/coverage.ndjson b/math/base/special/acsch/coverage.ndjson new file mode 100644 index 000000000..284e80314 --- /dev/null +++ b/math/base/special/acsch/coverage.ndjson @@ -0,0 +1 @@ +[157,157,100,5,5,100,2,2,100,157,157,100,"6e31e7364b677a18cb4294b0820ba1ebe68cb47f","2024-03-11 15:55:44 -0700"] diff --git a/math/base/special/acsch/index.html b/math/base/special/acsch/index.html new file mode 100644 index 000000000..1ff175bf5 --- /dev/null +++ b/math/base/special/acsch/index.html @@ -0,0 +1,146 @@ + + + + + + Code coverage report for math/base/special/acsch/lib + + + + + + + + + +
+
+

All files math/base/special/acsch/lib

+
+ +
+ 100% + Statements + 157/157 +
+ + +
+ 100% + Branches + 5/5 +
+ + +
+ 100% + Functions + 2/2 +
+ + +
+ 100% + Lines + 157/157 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
index.js +
+
100%46/46100%1/1100%0/0100%46/46
main.js +
+
100%53/53100%2/2100%1/1100%53/53
native.js +
+
100%58/58100%2/2100%1/1100%58/58
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/math/base/special/acsch/index.js.html b/math/base/special/acsch/index.js.html new file mode 100644 index 000000000..51a450526 --- /dev/null +++ b/math/base/special/acsch/index.js.html @@ -0,0 +1,223 @@ + + + + + + Code coverage report for math/base/special/acsch/lib/index.js + + + + + + + + + +
+
+

All files / math/base/special/acsch/lib index.js

+
+ +
+ 100% + Statements + 46/46 +
+ + +
+ 100% + Branches + 1/1 +
+ + +
+ 100% + Functions + 0/0 +
+ + +
+ 100% + Lines + 46/46 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +471x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2022 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';
+ 
+/**
+* Compute the hyperbolic arccosecant of a number.
+*
+* @module @stdlib/math/base/special/acsch
+*
+* @example
+* var acsch = require( '@stdlib/math/base/special/acsch' );
+*
+* var v = acsch( 0.0 );
+* // returns Infinity
+*
+* v = acsch( -1.0 );
+* // returns ~-0.881
+*
+* v = acsch( NaN );
+* // returns NaN
+*/
+ 
+// MODULES //
+ 
+var main = require( './main.js' );
+ 
+ 
+// EXPORTS //
+ 
+module.exports = main;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/math/base/special/acsch/main.js.html b/math/base/special/acsch/main.js.html new file mode 100644 index 000000000..4f1e9afe1 --- /dev/null +++ b/math/base/special/acsch/main.js.html @@ -0,0 +1,244 @@ + + + + + + Code coverage report for math/base/special/acsch/lib/main.js + + + + + + + + + +
+
+

All files / math/base/special/acsch/lib main.js

+
+ +
+ 100% + Statements + 53/53 +
+ + +
+ 100% + Branches + 2/2 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 53/53 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +541x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +6544x +6544x +6544x +1x +1x +1x +1x +1x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2022 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 asinh = require( '@stdlib/math/base/special/asinh' );
+ 
+ 
+// MAIN //
+ 
+/**
+* Computes the hyperbolic arccosecant of a number.
+*
+* @param {number} x - input value
+* @returns {number} hyperbolic arccosecant
+*
+* @example
+* var v = acsch( 0.0 );
+* // returns Infinity
+*
+* @example
+* var v = acsch( -1.0 );
+* // returns ~-0.881
+*
+* @example
+* var v = acsch( 1.0 );
+* // returns ~0.881
+*/
+function acsch( x ) {
+	return asinh( 1.0 / x );
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = acsch;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/math/base/special/acsch/native.js.html b/math/base/special/acsch/native.js.html new file mode 100644 index 000000000..5bf724a09 --- /dev/null +++ b/math/base/special/acsch/native.js.html @@ -0,0 +1,259 @@ + + + + + + Code coverage report for math/base/special/acsch/lib/native.js + + + + + + + + + +
+
+

All files / math/base/special/acsch/lib native.js

+
+ +
+ 100% + Statements + 58/58 +
+ + +
+ 100% + Branches + 2/2 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 58/58 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +591x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +6544x +6544x +6544x +1x +1x +1x +1x +1x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2024 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 addon = require( './../src/addon.node' );
+ 
+ 
+// MAIN //
+ 
+/**
+* Computes the hyperbolic arccosecant of a double-precision floating-point number.
+*
+* @private
+* @param {number} x - input value
+* @returns {number} hyperbolic arccosecant
+*
+* @example
+* var v = acsch( 0.0 );
+* // returns Infinity
+*
+* @example
+* var v = acsch( 1.0 );
+* // returns ~0.881
+*
+* @example
+* var v = acsch( -1.0 );
+* // returns ~-0.881
+*
+* @example
+* var v = acsch( NaN );
+* // returns NaN
+*/
+function acsch( x ) {
+	return addon( x );
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = acsch;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file