Skip to content

Commit

Permalink
docs: add missing periods to list items
Browse files Browse the repository at this point in the history
---
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: passed
  - task: lint_package_json
    status: na
  - task: lint_repl_help
    status: na
  - task: lint_javascript_src
    status: na
  - 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
---

---
type: pre_push_report
description: Results of running various checks prior to pushing changes.
report:
  - task: run_javascript_examples
    status: na
  - task: run_c_examples
    status: na
  - task: run_cpp_examples
    status: na
  - task: run_javascript_readme_examples
    status: passed
  - task: run_c_benchmarks
    status: na
  - task: run_cpp_benchmarks
    status: na
  - task: run_fortran_benchmarks
    status: na
  - task: run_javascript_benchmarks
    status: na
  - task: run_julia_benchmarks
    status: na
  - task: run_python_benchmarks
    status: na
  - task: run_r_benchmarks
    status: na
  - task: run_javascript_tests
    status: na
---
  • Loading branch information
Planeshifter committed Jan 4, 2025
1 parent 6b3a77d commit 321e49e
Show file tree
Hide file tree
Showing 66 changed files with 475 additions and 475 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ var bool = ( out === y );

The invoked `predicate` function is provided three arguments:

- **value**: collection element,
- **index**: collection index,
- **collection**: input collection,
- **value**: collection element.
- **index**: collection index.
- **collection**: input collection.

To set the function execution context, provide a `thisArg`.

Expand Down
62 changes: 31 additions & 31 deletions lib/node_modules/@stdlib/array/float32/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ var arr = Float32Array.from( [ 1.0, 2.0 ], mapFcn );

A callback function is provided two arguments:

- `value`: source value
- `index`: source index
- `value`: source value.
- `index`: source index.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -371,9 +371,9 @@ var bool = arr.every( predicate );

A `predicate` function is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -490,9 +490,9 @@ var arr2 = arr1.filter( predicate );

A `predicate` function is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -552,9 +552,9 @@ var v = arr.find( predicate );

A `predicate` function is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -615,9 +615,9 @@ var idx = arr.findIndex( predicate );

A `predicate` function is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -670,9 +670,9 @@ console.log( str );

The callback is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -893,9 +893,9 @@ var arr2 = arr1.map( fcn );

A callback is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -957,10 +957,10 @@ var v = arr.reduce( fcn, 0.0 );

A callback is provided four arguments:

- `acc`: accumulated result
- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `acc`: accumulated result.
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

<a name="method-reduce-right"></a>

Expand Down Expand Up @@ -1000,10 +1000,10 @@ var v = arr.reduce( fcn, 0.0 );

A callback is provided four arguments:

- `acc`: accumulated result
- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `acc`: accumulated result.
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

<a name="method-reverse"></a>

Expand Down Expand Up @@ -1176,9 +1176,9 @@ var bool = arr.some( predicate );

A `predicate` function is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down
62 changes: 31 additions & 31 deletions lib/node_modules/@stdlib/array/float64/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ var arr = Float64Array.from( [ 1.0, -1.0 ], mapFcn );

A callback function is provided two arguments:

- `value`: source value
- `index`: source index
- `value`: source value.
- `index`: source index.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -363,9 +363,9 @@ var bool = arr.every( predicate );

A `predicate` function is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -482,9 +482,9 @@ var arr2 = arr1.filter( predicate );

A `predicate` function is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -544,9 +544,9 @@ var v = arr.find( predicate );

A `predicate` function is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -607,9 +607,9 @@ var idx = arr.findIndex( predicate );

A `predicate` function is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -662,9 +662,9 @@ console.log( str );

The callback is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -885,9 +885,9 @@ var arr2 = arr1.map( fcn );

A callback is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down Expand Up @@ -949,10 +949,10 @@ var v = arr.reduce( fcn, 0.0 );

A callback is provided four arguments:

- `acc`: accumulated result
- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `acc`: accumulated result.
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

<a name="method-reduce-right"></a>

Expand Down Expand Up @@ -992,10 +992,10 @@ var v = arr.reduce( fcn, 0.0 );

A callback is provided four arguments:

- `acc`: accumulated result
- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `acc`: accumulated result.
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

<a name="method-reverse"></a>

Expand Down Expand Up @@ -1168,9 +1168,9 @@ var bool = arr.some( predicate );

A `predicate` function is provided three arguments:

- `value`: array element
- `index`: array index
- `arr`: array on which the method is invoked
- `value`: array element.
- `index`: array index.
- `arr`: array on which the method is invoked.

To set the callback execution context, provide a `thisArg`.

Expand Down
Loading

1 comment on commit 321e49e

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
array/base/cuevery-by-right $\color{green}298/298$
$\color{green}+100.00\%$
$\color{green}16/16$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}298/298$
$\color{green}+100.00\%$
array/float32 $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
array/float64 $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
array/int16 $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
array/int32 $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
array/int8 $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
array/uint16 $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
array/uint32 $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
array/uint8 $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
array/uint8c $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
blas/base/drotm-wasm $\color{green}688/688$
$\color{green}+100.00\%$
$\color{green}17/17$
$\color{green}+100.00\%$
$\color{green}6/6$
$\color{green}+100.00\%$
$\color{green}688/688$
$\color{green}+100.00\%$
blas/base/drotm $\color{green}469/469$
$\color{green}+100.00\%$
$\color{green}35/35$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}469/469$
$\color{green}+100.00\%$
blas/base/sgemm $\color{green}821/821$
$\color{green}+100.00\%$
$\color{green}114/114$
$\color{green}+100.00\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{green}821/821$
$\color{green}+100.00\%$
blas/base/srotm $\color{green}474/474$
$\color{green}+100.00\%$
$\color{green}35/35$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}474/474$
$\color{green}+100.00\%$
datasets/cmudict $\color{green}333/333$
$\color{green}+100.00\%$
$\color{green}34/34$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}333/333$
$\color{green}+100.00\%$
iter/any-by $\color{green}125/125$
$\color{green}+100.00\%$
$\color{green}12/12$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}125/125$
$\color{green}+100.00\%$
iter/cuany-by $\color{green}223/223$
$\color{green}+100.00\%$
$\color{green}21/21$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}223/223$
$\color{green}+100.00\%$
iter/cuevery-by $\color{green}223/223$
$\color{green}+100.00\%$
$\color{green}21/21$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}223/223$
$\color{green}+100.00\%$
iter/cunone-by $\color{green}223/223$
$\color{green}+100.00\%$
$\color{green}21/21$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}223/223$
$\color{green}+100.00\%$
iter/cusome-by $\color{red}236/239$
$\color{green}+98.74\%$
$\color{red}21/22$
$\color{green}+95.45\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}236/239$
$\color{green}+98.74\%$
iter/do-until-each $\color{red}224/227$
$\color{green}+98.68\%$
$\color{red}22/23$
$\color{green}+95.65\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}224/227$
$\color{green}+98.68\%$
iter/do-while-each $\color{red}225/228$
$\color{green}+98.68\%$
$\color{red}21/22$
$\color{green}+95.45\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}225/228$
$\color{green}+98.68\%$
iter/every-by $\color{green}124/124$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}124/124$
$\color{green}+100.00\%$
iter/flow $\color{green}294/294$
$\color{green}+100.00\%$
$\color{green}31/31$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}294/294$
$\color{green}+100.00\%$
iter/for-each $\color{green}207/207$
$\color{green}+100.00\%$
$\color{green}18/18$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}207/207$
$\color{green}+100.00\%$
iter/intersection-by-hash $\color{red}367/369$
$\color{green}+99.46\%$
$\color{red}53/54$
$\color{green}+98.15\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{red}367/369$
$\color{green}+99.46\%$
iter/mapn $\color{green}248/248$
$\color{green}+100.00\%$
$\color{green}27/27$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}248/248$
$\color{green}+100.00\%$
iter/none-by $\color{green}124/124$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}124/124$
$\color{green}+100.00\%$
iter/pipeline-thunk $\color{green}134/134$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}134/134$
$\color{green}+100.00\%$
iter/pop $\color{green}201/201$
$\color{green}+100.00\%$
$\color{green}24/24$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}201/201$
$\color{green}+100.00\%$
iter/reject $\color{green}201/201$
$\color{green}+100.00\%$
$\color{green}20/20$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}201/201$
$\color{green}+100.00\%$
iter/replicate-by $\color{green}245/245$
$\color{green}+100.00\%$
$\color{green}25/25$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}245/245$
$\color{green}+100.00\%$
iter/shift $\color{green}196/196$
$\color{green}+100.00\%$
$\color{green}24/24$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}196/196$
$\color{green}+100.00\%$
iter/some-by $\color{green}135/135$
$\color{green}+100.00\%$
$\color{green}14/14$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}135/135$
$\color{green}+100.00\%$
iter/strided-by $\color{green}292/292$
$\color{green}+100.00\%$
$\color{green}48/48$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}292/292$
$\color{green}+100.00\%$
iter/unique-by-hash $\color{green}239/239$
$\color{green}+100.00\%$
$\color{green}25/25$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}239/239$
$\color{green}+100.00\%$
iter/unique-by $\color{green}244/244$
$\color{green}+100.00\%$
$\color{green}25/25$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}244/244$
$\color{green}+100.00\%$
iter/until-each $\color{red}224/227$
$\color{green}+98.68\%$
$\color{red}22/23$
$\color{green}+95.65\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}224/227$
$\color{green}+98.68\%$
iter/while-each $\color{red}224/227$
$\color{green}+98.68\%$
$\color{red}21/22$
$\color{green}+95.45\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}224/227$
$\color{green}+98.68\%$
lapack/base/dlassq $\color{red}406/408$
$\color{green}+99.51\%$
$\color{red}41/42$
$\color{green}+97.62\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{red}406/408$
$\color{green}+99.51\%$
math/base/special/atan2 $\color{green}290/290$
$\color{green}+100.00\%$
$\color{green}27/27$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}290/290$
$\color{green}+100.00\%$
math/iter/tools/map $\color{green}275/275$
$\color{green}+100.00\%$
$\color{green}30/30$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}275/275$
$\color{green}+100.00\%$
plot/components/svg/rug $\color{green}487/487$
$\color{green}+100.00\%$
$\color{green}19/19$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}487/487$
$\color{green}+100.00\%$
plot/sparklines/base/ctor $\color{green}628/628$
$\color{green}+100.00\%$
$\color{green}36/36$
$\color{green}+100.00\%$
$\color{green}6/6$
$\color{green}+100.00\%$
$\color{green}628/628$
$\color{green}+100.00\%$
plot/sparklines/unicode $\color{green}466/466$
$\color{green}+100.00\%$
$\color{green}36/36$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}466/466$
$\color{green}+100.00\%$
plot/sparklines/unicode/column $\color{green}486/486$
$\color{green}+100.00\%$
$\color{green}56/56$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}486/486$
$\color{green}+100.00\%$
plot/sparklines/unicode/line $\color{green}510/510$
$\color{green}+100.00\%$
$\color{green}68/68$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}510/510$
$\color{green}+100.00\%$
plot/sparklines/unicode/tristate $\color{green}232/232$
$\color{green}+100.00\%$
$\color{green}28/28$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}232/232$
$\color{green}+100.00\%$
plot/sparklines/unicode/up-down $\color{green}229/229$
$\color{green}+100.00\%$
$\color{green}27/27$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}229/229$
$\color{green}+100.00\%$
plot/sparklines/unicode/win-loss $\color{green}253/253$
$\color{green}+100.00\%$
$\color{green}40/40$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}253/253$
$\color{green}+100.00\%$
stats/base/dists/bernoulli/entropy $\color{green}178/178$
$\color{green}+100.00\%$
$\color{green}12/12$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}178/178$
$\color{green}+100.00\%$
utils/async/do-until $\color{green}185/185$
$\color{green}+100.00\%$
$\color{green}22/22$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}185/185$
$\color{green}+100.00\%$
utils/async/do-while $\color{green}185/185$
$\color{green}+100.00\%$
$\color{green}22/22$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}185/185$
$\color{green}+100.00\%$
utils/async/if-else $\color{green}141/141$
$\color{green}+100.00\%$
$\color{green}12/12$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}141/141$
$\color{green}+100.00\%$
utils/async/if-then $\color{green}201/201$
$\color{green}+100.00\%$
$\color{green}21/21$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}201/201$
$\color{green}+100.00\%$
utils/async/map-function $\color{green}496/496$
$\color{green}+100.00\%$
$\color{green}59/59$
$\color{green}+100.00\%$
$\color{green}9/9$
$\color{green}+100.00\%$
$\color{green}496/496$
$\color{green}+100.00\%$
utils/async/try-catch $\color{green}145/145$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}145/145$
$\color{green}+100.00\%$
utils/async/try-then $\color{green}199/199$
$\color{green}+100.00\%$
$\color{green}21/21$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}199/199$
$\color{green}+100.00\%$
utils/async/until $\color{green}185/185$
$\color{green}+100.00\%$
$\color{green}22/22$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}185/185$
$\color{green}+100.00\%$
utils/async/while $\color{green}185/185$
$\color{green}+100.00\%$
$\color{green}22/22$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}185/185$
$\color{green}+100.00\%$
utils/find $\color{green}266/266$
$\color{green}+100.00\%$
$\color{green}41/41$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}266/266$
$\color{green}+100.00\%$
utils/named-typed-tuple $\color{red}954/1786$
$\color{green}+53.42\%$
$\color{red}20/30$
$\color{green}+66.67\%$
$\color{red}6/39$
$\color{green}+15.38\%$
$\color{red}954/1786$
$\color{green}+53.42\%$
utils/tabulate-by $\color{green}228/228$
$\color{green}+100.00\%$
$\color{green}24/24$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}228/228$
$\color{green}+100.00\%$
utils/tabulate $\color{green}132/132$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}132/132$
$\color{green}+100.00\%$
utils/until-each-right $\color{green}141/141$
$\color{green}+100.00\%$
$\color{green}13/13$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}141/141$
$\color{green}+100.00\%$
utils/while-each-right $\color{green}141/141$
$\color{green}+100.00\%$
$\color{green}13/13$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}141/141$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please # to comment.