From 1f44aa2656566c640e02c9f450b8fad905f16157 Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Tue, 26 Mar 2024 07:27:13 +0000 Subject: [PATCH] Update artifacts --- constants/float32/fourth-pi/coverage.ndjson | 1 + constants/float32/fourth-pi/index.html | 116 ++++++++++ constants/float32/fourth-pi/index.js.html | 241 ++++++++++++++++++++ 3 files changed, 358 insertions(+) create mode 100644 constants/float32/fourth-pi/coverage.ndjson create mode 100644 constants/float32/fourth-pi/index.html create mode 100644 constants/float32/fourth-pi/index.js.html diff --git a/constants/float32/fourth-pi/coverage.ndjson b/constants/float32/fourth-pi/coverage.ndjson new file mode 100644 index 000000000..fe4da99aa --- /dev/null +++ b/constants/float32/fourth-pi/coverage.ndjson @@ -0,0 +1 @@ +[52,52,100,1,1,100,0,0,100,52,52,100,"8994c14cb75a6e7deda053ec027778cd078ea6ff","2024-03-26 00:25:46 -0700"] diff --git a/constants/float32/fourth-pi/index.html b/constants/float32/fourth-pi/index.html new file mode 100644 index 000000000..412fc568e --- /dev/null +++ b/constants/float32/fourth-pi/index.html @@ -0,0 +1,116 @@ + + + + +
++ Press n or j to go to the next uncovered block, b, p or k for the previous block. +
+ +File | ++ | Statements | ++ | Branches | ++ | Functions | ++ | Lines | ++ |
---|---|---|---|---|---|---|---|---|---|
index.js | +
+
+ |
+ 100% | +52/52 | +100% | +1/1 | +100% | +0/0 | +100% | +52/52 | +
+ 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 | 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 +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'; + +/** +* One fourth times the mathematical constant `π`. +* +* @module @stdlib/constants/float32/fourth-pi +* @type {number} +* +* @example +* var FLOAT32_FOURTH_PI = require( '@stdlib/constants/float32/fourth-pi' ); +* // returns 7.853981852531433e-1 +*/ + +// MODULES // + +var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); + + +// MAIN // + +/** +* One fourth times the mathematical constant `π`. +* +* @constant +* @type {number} +* @default 7.853981852531433e-1 +* @see [Wikipedia]{@link https://en.wikipedia.org/wiki/Pi} +*/ +var FLOAT32_FOURTH_PI = float64ToFloat32( 7.85398163397448309616e-1 ); + + +// EXPORTS // + +module.exports = FLOAT32_FOURTH_PI; + |