Skip to content

Commit 39f863b

Browse files
committed
Auto-generated commit
1 parent 1c15d69 commit 39f863b

File tree

111 files changed

+152
-149
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+152
-149
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-01-20)
7+
## Unreleased (2025-02-08)
88

99
<section class="packages">
1010

@@ -1069,7 +1069,7 @@ A total of 27 issues were closed in this release:
10691069

10701070
### Contributors
10711071

1072-
A total of 12 people contributed to this release. Thank you to the following contributors:
1072+
A total of 13 people contributed to this release. Thank you to the following contributors:
10731073

10741074
- Aayush Khanna
10751075
- Abhijit Raut
@@ -1083,6 +1083,7 @@ A total of 12 people contributed to this release. Thank you to the following con
10831083
- Philipp Burckhardt
10841084
- Rylan Yang
10851085
- Vinit Pandit
1086+
- gururaj1512
10861087

10871088
</section>
10881089

@@ -1094,6 +1095,7 @@ A total of 12 people contributed to this release. Thank you to the following con
10941095

10951096
<details>
10961097

1098+
- [`836170d`](https://github.com/stdlib-js/stdlib/commit/836170decec14309639deb41ae3a3c22256d68af) - **refactor:** update paths _(by gururaj1512)_
10971099
- [`1024672`](https://github.com/stdlib-js/stdlib/commit/10246726f20f36d6322d74160e6f4d54805b02e4) - **docs:** update namespace TypeScript declaration comments [(#4729)](https://github.com/stdlib-js/stdlib/pull/4729) _(by stdlib-bot)_
10981100
- [`fd622e8`](https://github.com/stdlib-js/stdlib/commit/fd622e8948ffdf6a9a8d2809ed789a1fac20a79f) - **docs:** update examples _(by Athan Reines)_
10991101
- [`55f8f64`](https://github.com/stdlib-js/stdlib/commit/55f8f640e1001e7189b85406482b748ae7bc6a50) - **docs:** update examples _(by Athan Reines)_

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ Marcus Fantham <[email protected]>
6363
Matt Cochrane <[email protected]>
6464
Mihir Pandit <[email protected]>
6565
Milan Raj <[email protected]>
66+
Mohammad Bin Aftab <[email protected]>
6667
Mohammad Kaif <[email protected]>
6768
Momtchil Momtchev <[email protected]>
6869
Muhammad Haris <[email protected]>
@@ -125,5 +126,6 @@ Xiaochuan Ye <[email protected]>
125126
Yaswanth Kosuru <[email protected]>
126127
Yernar Yergaziyev <[email protected]>
127128
olenkabilonizhka <[email protected]>
129+
pranav-1720 <[email protected]>
128130
129131

base/binary2d/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var binary2d = require( '@stdlib/array/base/binary2d' );
4141
Applies a binary callback to elements in two two-dimensional nested input arrays and assigns results to elements in a two-dimensional nested output array.
4242

4343
```javascript
44-
var add = require( '@stdlib/math/base/ops/add' );
44+
var add = require( '@stdlib/number/float64/base/add' );
4545
var zeros2d = require( '@stdlib/array/base/zeros2d' );
4646

4747
var x = [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ];
@@ -83,7 +83,7 @@ The function accepts the following arguments:
8383
var discreteUniform = require( '@stdlib/random/base/discrete-uniform' ).factory;
8484
var filled2dBy = require( '@stdlib/array/base/filled2d-by' );
8585
var zeros2d = require( '@stdlib/array/base/zeros2d' );
86-
var add = require( '@stdlib/math/base/ops/add' );
86+
var add = require( '@stdlib/number/float64/base/add' );
8787
var binary2d = require( '@stdlib/array/base/binary2d' );
8888

8989
var shape = [ 3, 3 ];

base/binary2d/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var uniform = require( '@stdlib/random/base/uniform' ).factory;
2525
var isnan = require( '@stdlib/math/base/assert/is-nan' );
2626
var pow = require( '@stdlib/math/base/special/pow' );
2727
var floor = require( '@stdlib/math/base/special/floor' );
28-
var add = require( '@stdlib/math/base/ops/add' );
28+
var add = require( '@stdlib/number/float64/base/add' );
2929
var filled2dBy = require( './../../../base/filled2d-by' );
3030
var zeros2d = require( './../../../base/zeros2d' );
3131
var numel = require( '@stdlib/ndarray/base/numel' );

base/binary2d/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
> var y = [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ];
2323
> var z = [ [ 0.0, 0.0 ], [ 0.0, 0.0 ] ];
2424
> var shape = [ 2, 2 ];
25-
> {{alias}}( [ x, y, z ], shape, {{alias:@stdlib/math/base/ops/add}} );
25+
> {{alias}}( [ x, y, z ], shape, {{alias:@stdlib/number/float64/base/add}} );
2626
> z
2727
[ [ 2.0, 4.0 ], [ 6.0, 8.0 ] ]
2828

base/binary2d/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ type Binary<T, U, V> = ( v1: T, v2: U ) => V;
4646
* @example
4747
* var ones2d = require( '@stdlib/array/base/ones2d' );
4848
* var zeros2d = require( '@stdlib/array/base/zeros2d' );
49-
* var add = require( '@stdlib/math/base/ops/add' );
49+
* var add = require( '@stdlib/number/float64/base/add' );
5050
*
5151
* var shape = [ 2, 2 ];
5252
*

base/binary2d/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
var discreteUniform = require( '@stdlib/random/base/discrete-uniform' ).factory;
2222
var filled2dBy = require( './../../../base/filled2d-by' );
2323
var zeros2d = require( './../../../base/zeros2d' );
24-
var add = require( '@stdlib/math/base/ops/add' );
24+
var add = require( '@stdlib/number/float64/base/add' );
2525
var binary2d = require( './../lib' );
2626

2727
var shape = [ 3, 3 ];

base/binary2d/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @example
2727
* var ones2d = require( '@stdlib/array/base/ones2d' );
2828
* var zeros2d = require( '@stdlib/array/base/zeros2d' );
29-
* var add = require( '@stdlib/math/base/ops/add' );
29+
* var add = require( '@stdlib/number/float64/base/add' );
3030
* var binary2d = require( '@stdlib/array/base/binary2d' );
3131
*
3232
* var shape = [ 2, 2 ];

base/binary2d/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* @example
3636
* var ones2d = require( '@stdlib/array/base/ones2d' );
3737
* var zeros2d = require( '@stdlib/array/base/zeros2d' );
38-
* var add = require( '@stdlib/math/base/ops/add' );
38+
* var add = require( '@stdlib/number/float64/base/add' );
3939
*
4040
* var shape = [ 2, 2 ];
4141
*

0 commit comments

Comments
 (0)