From 376d831be883872936b1bbf8bc9fa8848b24ffaa Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Wed, 30 Oct 2024 01:36:29 +0000 Subject: [PATCH] Update artifacts --- math/iter/ops/coverage.ndjson | 1 + math/iter/ops/index.html | 116 ++++++++++++ math/iter/ops/index.js.html | 346 ++++++++++++++++++++++++++++++++++ 3 files changed, 463 insertions(+) create mode 100644 math/iter/ops/coverage.ndjson create mode 100644 math/iter/ops/index.html create mode 100644 math/iter/ops/index.js.html diff --git a/math/iter/ops/coverage.ndjson b/math/iter/ops/coverage.ndjson new file mode 100644 index 000000000..2f34b3ec2 --- /dev/null +++ b/math/iter/ops/coverage.ndjson @@ -0,0 +1 @@ +[87,87,100,1,1,100,0,0,100,87,87,100,"43ac1e77bd764f110c19a3eb08421d0a4af9fc61","2024-10-29 21:34:38 -0400"] diff --git a/math/iter/ops/index.html b/math/iter/ops/index.html new file mode 100644 index 000000000..ddb60c251 --- /dev/null +++ b/math/iter/ops/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% | +87/87 | +100% | +1/1 | +100% | +0/0 | +100% | +87/87 | +
+ 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 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84 +85 +86 +87 +88 | 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 +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) 2020 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'; + +/* +* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name. +*/ + +// MODULES // + +var setReadOnly = require( '@stdlib/utils/define-read-only-property' ); + + +// MAIN // + +/** +* Top-level namespace. +* +* @namespace ns +*/ +var ns = {}; + +/** +* @name iterAdd +* @memberof ns +* @readonly +* @type {Function} +* @see {@link module:@stdlib/math/iter/ops/add} +*/ +setReadOnly( ns, 'iterAdd', require( '@stdlib/math/iter/ops/add' ) ); + +/** +* @name iterDivide +* @memberof ns +* @readonly +* @type {Function} +* @see {@link module:@stdlib/math/iter/ops/divide} +*/ +setReadOnly( ns, 'iterDivide', require( '@stdlib/math/iter/ops/divide' ) ); + +/** +* @name iterMod +* @memberof ns +* @readonly +* @type {Function} +* @see {@link module:@stdlib/math/iter/ops/mod} +*/ +setReadOnly( ns, 'iterMod', require( '@stdlib/math/iter/ops/mod' ) ); + +/** +* @name iterMultiply +* @memberof ns +* @readonly +* @type {Function} +* @see {@link module:@stdlib/math/iter/ops/multiply} +*/ +setReadOnly( ns, 'iterMultiply', require( '@stdlib/math/iter/ops/multiply' ) ); + +/** +* @name iterSubtract +* @memberof ns +* @readonly +* @type {Function} +* @see {@link module:@stdlib/math/iter/ops/subtract} +*/ +setReadOnly( ns, 'iterSubtract', require( '@stdlib/math/iter/ops/subtract' ) ); + + +// EXPORTS // + +module.exports = ns; + |