Skip to content

Commit

Permalink
chore: update argument documentation styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Sep 17, 2024
1 parent 40502bb commit cadb613
Show file tree
Hide file tree
Showing 52 changed files with 140 additions and 140 deletions.
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/array/from-iterator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ var arr = iterator2array( array2iterator( [ 1, 2, 3, 4 ] ), fcn );

The invoked function is provided two arguments:

- `value`: iterated value
- `index`: iterated value index
- **value**: iterated value.
- **index**: iterated value index.

```javascript
var Float64Array = require( '@stdlib/array/float64' );
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/fs/resolve-parent-path-by/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ function onPath( error, path ) {

When invoked, the `predicate` function is provided two arguments:

- `path`: a resolved path.
- `next`: a callback which should be called once the `predicate` function has finished processing a resolved path.
- **path**: a resolved path.
- **next**: a callback which should be called once the `predicate` function has finished processing a resolved path.

If a `predicate` function calls the `next` callback with a truthy second argument, the function stops processing any additional paths and returns the resolved path as the test result.

Expand All @@ -105,7 +105,7 @@ The function accepts the same `options` as [`resolveParentPathBy()`](#resolve-pa

When invoked, the `predicate` function is provided one argument:

- `path`: a resolved path.
- **path**: a resolved path.

The function immediately returns upon encountering a truthy `predicate` function return value.

Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/iter/filter-map/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ The returned [iterator][mdn-iterator-protocol] protocol-compliant object has the

The callback function is provided two arguments:

- `value`: iterated value
- `index`: iteration index (zero-based)
- **value**: iterated value.
- **index**: iteration index (zero-based).

```javascript
var array2iterator = require( '@stdlib/array/to-iterator' );
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/iter/filter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ The returned [iterator][mdn-iterator-protocol] protocol-compliant object has the

The `predicate` function is provided two arguments:

- `value`: iterated value
- `index`: iteration index (zero-based)
- **value**: iterated value.
- **index**: iteration index (zero-based).

```javascript
var array2iterator = require( '@stdlib/array/to-iterator' );
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/iter/map/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ The returned [iterator][mdn-iterator-protocol] protocol-compliant object has the

The invoked `function` is provided two arguments:

- `value`: iterated value
- `index`: iteration index (zero-based)
- **value**: iterated value.
- **index**: iteration index (zero-based).

```javascript
var array2iterator = require( '@stdlib/array/to-iterator' );
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/utils/any-by-right/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ var bool = anyByRight( arr, isNegative );

The invoked `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
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/utils/any-by/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ var bool = anyBy( arr, isPositive );

The invoked `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
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/utils/any-in-by/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ var bool = anyInBy( obj, isPositive );

The invoked `function` is provided three arguments:

- `value`: property value
- `key`: property key
- `object`: input object
- **value**: property value.
- **key**: property key.
- **object**: input object.

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

Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/utils/any-own-by/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ var bool = anyOwnBy( obj, isPositive );

The invoked `function` is provided three arguments:

- `value`: property value
- `key`: property key
- `obj`: input object
- **value**: property value.
- **key**: property key.
- **obj**: input object.

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

Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/utils/async/compose/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ f( 6, done ); // ((2*x)+3)/5

The last argument provided to each composed function is a `next` callback which accepts two arguments:

- `error`: error argument
- `result`: function result
- **error**: error argument.
- **result**: function result.

**Only** the rightmost function is explicitly permitted to accept multiple arguments. All other functions are evaluated as **binary** functions.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ f( 6, done ); // ((2*x)+3)/5

The last argument provided to each function is a `next` callback which accepts two arguments:

- `error`: error argument
- `result`: function result
- **error**: error argument.
- **result**: function result.

**Only** the leftmost function is explicitly permitted to accept multiple arguments. All other functions are evaluated as **binary** functions.

Expand Down
8 changes: 4 additions & 4 deletions lib/node_modules/@stdlib/utils/bifurcate-by/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ var out = bifurcateBy( arr, predicate );

A `predicate` function is provided two arguments:

- `value`: collection element
- `index`: collection index
- **value**: collection element.
- **index**: collection index.

```javascript
function predicate( v, i ) {
Expand All @@ -72,8 +72,8 @@ var out = bifurcateBy( arr, predicate );

The function accepts the following `options`:

- `returns`: specifies the output format. If the option equals `'values'`, the function outputs element values. If the option equals `'indices'`, the function outputs element indices. If the option equals `'*'`, the function outputs both element indices and values. Default: `'values'`.
- `thisArg`: execution context.
- **returns**: specifies the output format. If the option equals `'values'`, the function outputs element values. If the option equals `'indices'`, the function outputs element indices. If the option equals `'*'`, the function outputs both element indices and values. Default: `'values'`.
- **thisArg**: execution context.

By default, the function returns element values. To return element indices, set the `returns` option to `'indices'`.

Expand Down
8 changes: 4 additions & 4 deletions lib/node_modules/@stdlib/utils/bifurcate-in/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ var out = bifurcateIn( obj, predicate );

A `predicate` function is provided two arguments:

- `value`: object value
- `key`: object index
- **value**: object value.
- **key**: object index.

```javascript
function predicate( v, k ) {
Expand All @@ -93,8 +93,8 @@ var out = bifurcateIn( obj, predicate );

The function accepts the following `options`:

- `returns`: specifies the output format. If the option equals `'values'`, the function outputs values. If the option equals `'keys'`, the function outputs keys. If the option equals `'*'`, the function outputs both keys and values. Default: `'values'`.
- `thisArg`: execution context.
- **returns**: specifies the output format. If the option equals `'values'`, the function outputs values. If the option equals `'keys'`, the function outputs keys. If the option equals `'*'`, the function outputs both keys and values. Default: `'values'`.
- **thisArg**: execution context.

By default, the function returns object values. To return object keys, set the `returns` option to `'keys'`.

Expand Down
8 changes: 4 additions & 4 deletions lib/node_modules/@stdlib/utils/bifurcate-own/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ var out = bifurcateOwn( obj, predicate );

A `predicate` function is provided two arguments:

- `value`: object value
- `key`: object index
- **value**: object value.
- **key**: object index.

```javascript
function predicate( v, k ) {
Expand All @@ -82,8 +82,8 @@ var out = bifurcateOwn( obj, predicate );

The function accepts the following `options`:

- `returns`: specifies the output format. If the option equals `'values'`, the function outputs values. If the option equals `'keys'`, the function outputs keys. If the option equals `'*'`, the function outputs both keys and values. Default: `'values'`.
- `thisArg`: execution context.
- **returns**: specifies the output format. If the option equals `'values'`, the function outputs values. If the option equals `'keys'`, the function outputs keys. If the option equals `'*'`, the function outputs both keys and values. Default: `'values'`.
- **thisArg**: execution context.

By default, the function returns object values. To return object keys, set the `returns` option to `'keys'`.

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/utils/bifurcate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ var out = bifurcate( arr, filter );

The function accepts the following `options`:

- `returns`: specifies the output format. If the option equals `'values'`, the function outputs element values. If the option equals `'indices'`, the function outputs element indices. If the option equals `'*'`, the function outputs both element indices and values. Default: `'values'`.
- **returns**: specifies the output format. If the option equals `'values'`, the function outputs element values. If the option equals `'indices'`, the function outputs element indices. If the option equals `'*'`, the function outputs both element indices and values. Default: `'values'`.

By default, the function returns element values. To return element indices, set the `returns` option to `'indices'`.

Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/utils/count-by/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ var out = countBy( arr, indicator );

An `indicator` function is provided two arguments:

- `value`: collection element
- `index`: collection index
- **value**: collection element.
- **index**: collection index.

```javascript
function indicator( v, i ) {
Expand All @@ -72,7 +72,7 @@ var out = countBy( arr, indicator );

The function accepts the following `options`:

- `thisArg`: execution context.
- **thisArg**: execution context.

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

Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/utils/do-until-each-right/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ doUntilEachRight( arr, log, predicate );

Both the `predicate` function and the `function` to apply are provided three arguments:

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

If provided an empty `collection`, both `value` and `index` are `undefined`.

Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/utils/do-until-each/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ doUntilEach( arr, log, predicate );

Both the `predicate` function and the `function` to apply are provided three arguments:

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

If provided an empty `collection`, both `value` and `index` are `undefined`.

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/utils/do-until/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ doUntil( beep, predicate );

Both the `predicate` function and the `function` to invoke are provided a single argument:

- `i`: iteration number (starting from zero)
- **i**: iteration number (starting from zero).

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

Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/utils/do-while-each-right/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ doWhileEachRight( arr, log, predicate );

Both the `predicate` function and the `function` to apply are provided three arguments:

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

If provided an empty `collection`, both `value` and `index` are `undefined`.

Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/utils/do-while-each/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ doWhileEach( arr, log, predicate );

Both the `predicate` function and the `function` to apply are provided three arguments:

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

If provided an empty `collection`, both `value` and `index` are `undefined`.

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/utils/do-while/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ doWhile( beep, predicate );

Both the `predicate` function and the `function` to invoke are provided a single argument:

- `i`: iteration number (starting from zero)
- **i**: iteration number (starting from zero).

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

Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/utils/every-by-right/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ var bool = everyByRight( arr, isPositive );

The invoked `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
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/utils/every-by/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ var bool = everyBy( arr, isPositive );

The invoked `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
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/utils/every-own-by/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ var bool = everyOwnBy( obj, isPositive );

The invoked `function` is provided three arguments:

- `value`: property value
- `key`: property key
- `obj`: input object
- **value**: property value.
- **key**: property key.
- **obj**: input object.

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

Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/utils/for-each-right/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ forEachRight( arr, log );

The invoked `function` is provided three arguments:

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

Basic support for dynamic collections is provided. Note, however, that index incrementation is **not** guaranteed to be monotonically **decreasing**.

Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/utils/for-each/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ forEach( arr, log );

The invoked `function` is provided three arguments:

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

Basic support for dynamic collections is provided. Note, however, that index incrementation is monotonically increasing.

Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/utils/for-in/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ forIn( obj, log );

The invoked `function` is provided three arguments:

- `value`: object property value
- `key`: object property
- `obj`: the input object
- **value**: object property value.
- **key**: object property.
- **obj**: the input object.

To terminate iteration before visiting all properties, the provided function must explicitly return `false`.

Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/utils/for-own/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ forOwn( obj, log );

The invoked `function` is provided three arguments:

- `value`: object property value
- `key`: object property
- `obj`: the input object
- **value**: object property value.
- **key**: object property.
- **obj**: the input object.

To terminate iteration before visiting all properties, the provided function must explicitly return `false`.

Expand Down
Loading

2 comments on commit cadb613

@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/from-iterator $\color{green}189/189$
$\color{green}+100.00\%$
$\color{green}36/36$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}189/189$
$\color{green}+100.00\%$
fs/resolve-parent-path-by $\color{red}385/388$
$\color{green}+99.23\%$
$\color{red}48/50$
$\color{green}+96.00\%$
$\color{green}6/6$
$\color{green}+100.00\%$
$\color{red}385/388$
$\color{green}+99.23\%$
iter/filter-map $\color{green}210/210$
$\color{green}+100.00\%$
$\color{green}20/20$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}210/210$
$\color{green}+100.00\%$
iter/filter $\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/map $\color{green}199/199$
$\color{green}+100.00\%$
$\color{green}17/17$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}199/199$
$\color{green}+100.00\%$
utils/any-by-right $\color{green}124/124$
$\color{green}+100.00\%$
$\color{green}12/12$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}124/124$
$\color{green}+100.00\%$
utils/any-by $\color{green}121/121$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}121/121$
$\color{green}+100.00\%$
utils/any-in-by $\color{red}123/125$
$\color{green}+98.40\%$
$\color{red}9/10$
$\color{green}+90.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{red}123/125$
$\color{green}+98.40\%$
utils/any-own-by $\color{green}123/123$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}123/123$
$\color{green}+100.00\%$
utils/async/compose $\color{green}209/209$
$\color{green}+100.00\%$
$\color{green}15/15$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}209/209$
$\color{green}+100.00\%$
utils/async/function-sequence $\color{green}209/209$
$\color{green}+100.00\%$
$\color{green}15/15$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}209/209$
$\color{green}+100.00\%$
utils/bifurcate-by $\color{green}483/483$
$\color{green}+100.00\%$
$\color{green}46/46$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}483/483$
$\color{green}+100.00\%$
utils/bifurcate-in $\color{green}585/585$
$\color{green}+100.00\%$
$\color{green}41/41$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}585/585$
$\color{green}+100.00\%$
utils/bifurcate-own $\color{green}545/545$
$\color{green}+100.00\%$
$\color{green}44/44$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}545/545$
$\color{green}+100.00\%$
utils/bifurcate $\color{green}253/253$
$\color{green}+100.00\%$
$\color{green}24/24$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}253/253$
$\color{green}+100.00\%$
utils/count-by $\color{green}203/203$
$\color{green}+100.00\%$
$\color{green}21/21$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}203/203$
$\color{green}+100.00\%$
utils/do-until-each-right $\color{green}150/150$
$\color{green}+100.00\%$
$\color{green}15/15$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}150/150$
$\color{green}+100.00\%$
utils/do-until-each $\color{green}144/144$
$\color{green}+100.00\%$
$\color{green}14/14$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}144/144$
$\color{green}+100.00\%$
utils/do-until $\color{green}114/114$
$\color{green}+100.00\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}114/114$
$\color{green}+100.00\%$
utils/do-while-each-right $\color{green}150/150$
$\color{green}+100.00\%$
$\color{green}15/15$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}150/150$
$\color{green}+100.00\%$
utils/do-while-each $\color{green}144/144$
$\color{green}+100.00\%$
$\color{green}14/14$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}144/144$
$\color{green}+100.00\%$
utils/do-while $\color{green}114/114$
$\color{green}+100.00\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}114/114$
$\color{green}+100.00\%$
utils/every-by-right $\color{green}128/128$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}128/128$
$\color{green}+100.00\%$
utils/every-by $\color{green}121/121$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}121/121$
$\color{green}+100.00\%$
utils/every-own-by $\color{green}123/123$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}123/123$
$\color{green}+100.00\%$
utils/for-each-right $\color{green}123/123$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}123/123$
$\color{green}+100.00\%$
utils/for-each $\color{green}116/116$
$\color{green}+100.00\%$
$\color{green}9/9$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}116/116$
$\color{green}+100.00\%$
utils/for-in $\color{green}136/136$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}136/136$
$\color{green}+100.00\%$
utils/for-own $\color{green}135/135$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}135/135$
$\color{green}+100.00\%$
utils/group-by $\color{green}498/498$
$\color{green}+100.00\%$
$\color{green}36/36$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}498/498$
$\color{green}+100.00\%$
utils/group-in $\color{green}582/582$
$\color{green}+100.00\%$
$\color{green}38/38$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}582/582$
$\color{green}+100.00\%$
utils/group-own $\color{green}527/527$
$\color{green}+100.00\%$
$\color{green}39/39$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}527/527$
$\color{green}+100.00\%$
utils/group $\color{green}253/253$
$\color{green}+100.00\%$
$\color{green}24/24$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}253/253$
$\color{green}+100.00\%$
utils/inmap-right $\color{green}137/137$
$\color{green}+100.00\%$
$\color{green}12/12$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}137/137$
$\color{green}+100.00\%$
utils/inmap $\color{green}134/134$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}134/134$
$\color{green}+100.00\%$
utils/key-by-right $\color{green}126/126$
$\color{green}+100.00\%$
$\color{green}9/9$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}126/126$
$\color{green}+100.00\%$
utils/key-by $\color{green}126/126$
$\color{green}+100.00\%$
$\color{green}9/9$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}126/126$
$\color{green}+100.00\%$
utils/map-keys $\color{green}130/130$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}130/130$
$\color{green}+100.00\%$
utils/map-values $\color{green}127/127$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}127/127$
$\color{green}+100.00\%$
utils/none-by-right $\color{green}128/128$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}128/128$
$\color{green}+100.00\%$
utils/none-by $\color{green}121/121$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}121/121$
$\color{green}+100.00\%$
utils/none-in-by $\color{green}117/117$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
utils/object-inverse-by $\color{green}226/226$
$\color{green}+100.00\%$
$\color{green}24/24$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}226/226$
$\color{green}+100.00\%$
utils/some-by-right $\color{green}135/135$
$\color{green}+100.00\%$
$\color{green}15/15$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}135/135$
$\color{green}+100.00\%$
utils/some-by $\color{green}132/132$
$\color{green}+100.00\%$
$\color{green}14/14$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}132/132$
$\color{green}+100.00\%$
utils/some-in-by $\color{red}132/133$
$\color{green}+99.25\%$
$\color{red}13/14$
$\color{green}+92.86\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{red}132/133$
$\color{green}+99.25\%$
utils/some-own-by $\color{green}131/131$
$\color{green}+100.00\%$
$\color{green}13/13$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}131/131$
$\color{green}+100.00\%$
utils/try-then $\color{green}123/123$
$\color{green}+100.00\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}123/123$
$\color{green}+100.00\%$
utils/until-each $\color{green}132/132$
$\color{green}+100.00\%$
$\color{green}12/12$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}132/132$
$\color{green}+100.00\%$
utils/until $\color{green}114/114$
$\color{green}+100.00\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}114/114$
$\color{green}+100.00\%$
utils/while-each $\color{green}132/132$
$\color{green}+100.00\%$
$\color{green}12/12$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}132/132$
$\color{green}+100.00\%$
utils/while $\color{green}114/114$
$\color{green}+100.00\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}114/114$
$\color{green}+100.00\%$

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

@kgryte
Copy link
Member

@kgryte kgryte commented on cadb613 Sep 17, 2024

Choose a reason for hiding this comment

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

@Planeshifter Thank you for making these changes!

Please sign in to comment.