Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Sep 17, 2024
1 parent 1b32726 commit e04f5fb
Show file tree
Hide file tree
Showing 14 changed files with 37 additions and 15 deletions.
28 changes: 27 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,28 @@

<!-- /.package -->

<section class="package" id="array-base-cunone-by-unreleased">

#### [@stdlib/array/base/cunone-by](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/cunone-by)

<details>

<section class="features">

##### Features

- [`24e9908`](https://github.com/stdlib-js/stdlib/commit/24e9908afc085d5d2aece1844a6e25b36332f246) - add `array/base/cunone-by` package

</section>

<!-- /.features -->

</details>

</section>

<!-- /.package -->

<section class="package" id="array-base-cunone-by-right-unreleased">

#### [@stdlib/array/base/cunone-by-right](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/cunone-by-right)
Expand Down Expand Up @@ -205,10 +227,11 @@

### Contributors

A total of 4 people contributed to this release. Thank you to the following contributors:
A total of 5 people contributed to this release. Thank you to the following contributors:

- Athan Reines
- HarshaNP
- Kaif Mohd
- Philipp Burckhardt
- Vaibhav Patel

Expand All @@ -222,10 +245,13 @@ A total of 4 people contributed to this release. Thank you to the following cont

<details>

- [`f387603`](https://github.com/stdlib-js/stdlib/commit/f387603e739f88a38af3263ce6ff675ad903ee8c) - **docs:** consistently use declarative instead of imperative sentences outside of intros _(by Philipp Burckhardt)_
- [`31fd427`](https://github.com/stdlib-js/stdlib/commit/31fd42744ec5d7073041f97c6f72350b8005c0fc) - **style:** remove unwanted empty lines _(by Philipp Burckhardt)_
- [`16bb447`](https://github.com/stdlib-js/stdlib/commit/16bb44733defec3009d7c49cbd8cb6eaaaa60ad2) - **fix:** update TypeScript function signature and documentation _(by Philipp Burckhardt)_
- [`0bb460f`](https://github.com/stdlib-js/stdlib/commit/0bb460f9675f693bd4eb5826888e493cae8757fc) - **feat:** add `array/base/cusome-by-right` _(by HarshaNP, Philipp Burckhardt)_
- [`cadb613`](https://github.com/stdlib-js/stdlib/commit/cadb6131d6ce50338d11757e88e8a910a0367983) - **chore:** update argument documentation styling _(by Philipp Burckhardt)_
- [`e722c97`](https://github.com/stdlib-js/stdlib/commit/e722c9742d30f0e3c0ec6ebb349b30338facbdf0) - **feat:** add `array/base/cunone-by-right` _(by HarshaNP, Philipp Burckhardt)_
- [`24e9908`](https://github.com/stdlib-js/stdlib/commit/24e9908afc085d5d2aece1844a6e25b36332f246) - **feat:** add `array/base/cunone-by` package _(by Kaif Mohd, Philipp Burckhardt, Athan Reines)_
- [`a541897`](https://github.com/stdlib-js/stdlib/commit/a541897dec2cd902c186d9ad128b6efd8a3ca528) - **docs:** fix grammar _(by Athan Reines)_
- [`583452c`](https://github.com/stdlib-js/stdlib/commit/583452c820523f4bc97b293b4424d0c1bf59fffc) - **fix:** add missing property _(by Athan Reines)_
- [`91ad072`](https://github.com/stdlib-js/stdlib/commit/91ad07207eee217885975ce19d83e85d1f4a6499) - **fix:** add missing property _(by Athan Reines)_
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Joey Reed <[email protected]>
Jordan Gallivan <[email protected]>
Joris Labie <[email protected]>
Justin Dennison <[email protected]>
Kaif Mohd <[email protected]>
Karthik Prakash <[email protected]>
Khaldon <[email protected]>
Krishnendu Das <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion base/accessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ var v = arr.get( 0 );

#### AccessorArray.prototype.set( v\[, i] )

Set an array element.
Sets an array element.

```javascript
var arr = new AccessorArray( [ 1, 2, 3 ] );
Expand Down
2 changes: 1 addition & 1 deletion base/at/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var at = require( '@stdlib/array/base/at' );

#### at( x, index )

Return an element from an array.
Returns an element from an array.

```javascript
var x = [ 1, 2, 3, 4 ];
Expand Down
2 changes: 1 addition & 1 deletion base/at2d/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var at2d = require( '@stdlib/array/base/at2d' );

#### at2d( x, i0, i1 )

Return an element from a two-dimensional nested array.
Returns an element from a two-dimensional nested array.

```javascript
var x = [ [ 1, 2 ], [ 3, 4 ] ];
Expand Down
2 changes: 1 addition & 1 deletion base/at3d/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var at3d = require( '@stdlib/array/base/at3d' );

#### at3d( x, i0, i1, i2 )

Return an element from a three-dimensional nested array.
Returns an element from a three-dimensional nested array.

```javascript
var x = [ [ [ 1, 2 ], [ 3, 4 ] ] ];
Expand Down
2 changes: 1 addition & 1 deletion base/at4d/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var at4d = require( '@stdlib/array/base/at4d' );

#### at4d( x, i0, i1, i2, i3 )

Return an element from a four-dimensional nested array.
Returns an element from a four-dimensional nested array.

```javascript
var x = [ [ [ [ 1, 2 ], [ 3, 4 ] ] ] ];
Expand Down
2 changes: 1 addition & 1 deletion base/at5d/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var at5d = require( '@stdlib/array/base/at5d' );

#### at5d( x, i0, i1, i2, i3, i4 )

Return an element from a five-dimensional nested array.
Returns an element from a five-dimensional nested array.

```javascript
var x = [ [ [ [ [ 1, 2 ], [ 3, 4 ] ] ] ] ];
Expand Down
2 changes: 1 addition & 1 deletion base/atnd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var atnd = require( '@stdlib/array/base/atnd' );

#### atnd( x, i0\[, ...indices] )

Return an element from an n-dimensional nested array.
Returns an element from an n-dimensional nested array.

```javascript
var x = [ [ 1, 2 ], [ 3, 4 ] ];
Expand Down
1 change: 0 additions & 1 deletion base/cuany/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ import cuany = require( './index' );
cuany.assign( x, {}, 2, 0 ); // $ExpectError
}


// The compiler throws an error if the `assign` method is provided a third argument which is not a number...
{
const x = [ false, false, true, false, false ];
Expand Down
1 change: 0 additions & 1 deletion base/cuevery/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ import cuevery = require( './index' );
cuevery.assign( x, {}, 2, 0 ); // $ExpectError
}


// The compiler throws an error if the `assign` method is provided a third argument which is not a number...
{
const x = [ false, false, true, false, false ];
Expand Down
1 change: 0 additions & 1 deletion base/cunone/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ import cunone = require( './index' );
cunone.assign( x, {}, 2, 0 ); // $ExpectError
}


// The compiler throws an error if the `assign` method is provided a third argument which is not a number...
{
const x = [ false, false, true, false, false ];
Expand Down
4 changes: 2 additions & 2 deletions base/cusome-by-right/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var cusomeByRight = require( '@stdlib/array/base/cusome-by-right' );

#### cusomeByRight( x, n, predicate\[, thisArg ] )

Cumulatively test whether at least `n` elements in a provided array pass a test implemented by a `predicate` function, while iterating from right-to-left.
Cumulatively tests whether at least `n` elements in a provided array pass a test implemented by a `predicate` function, while iterating from right-to-left.

```javascript
function fcn( value ) {
Expand Down Expand Up @@ -74,7 +74,7 @@ var count = context.count;

#### cusomeByRight.assign( x, n, out, stride, offset, predicate\[, thisArg ] )

Cumulatively test whether at least `n` elements in a provided array pass a test implemented by a `predicate` function, while iterating from right-to-left and assign the results to the elements in the output array.
Cumulatively tests whether at least `n` elements in a provided array pass a test implemented by a `predicate` function, while iterating from right-to-left and assign the results to the elements in the output array.

```javascript
function fcn( v ) {
Expand Down
2 changes: 0 additions & 2 deletions base/cusome-by-right/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ const isPositive = ( v: number ): boolean => {
cusomeByRight.assign( x, [], y, 1, 0, isPositive ); // $ExpectError
}


// The compiler throws an error if the `assign` method is provided a third argument which is not an array-like object...
{
const x = [ 1, 1, 0, 0, 0 ];
Expand Down Expand Up @@ -184,7 +183,6 @@ const isPositive = ( v: number ): boolean => {
cusomeByRight.assign( x, 1, y, 1, 0, [] ); // $ExpectError
}


// The compiler throws an error if the `assign` method is provided an unsupported number of arguments...
{
cusomeByRight.assign(); // $ExpectError
Expand Down

0 comments on commit e04f5fb

Please sign in to comment.