Skip to content

Commit dbeaba7

Browse files
committed
Auto-generated commit
1 parent a5de3c7 commit dbeaba7

7 files changed

Lines changed: 30 additions & 9 deletions

File tree

.github/.keepalive

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2026-05-09T03:22:47.710Z

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-04-23)
7+
## Unreleased (2026-05-09)
88

99
<section class="features">
1010

@@ -22,6 +22,9 @@
2222

2323
<details>
2424

25+
- [`bdc1f9b`](https://github.com/stdlib-js/stdlib/commit/bdc1f9beed8120b36f6cb9fae9a5f28c091654f1) - **docs:** add notes _(by Athan Reines)_
26+
- [`f5a9f7d`](https://github.com/stdlib-js/stdlib/commit/f5a9f7d31e7d8877e5e3556533382e8e7e02c58e) - **docs:** update descriptions _(by Athan Reines)_
27+
- [`be5b88f`](https://github.com/stdlib-js/stdlib/commit/be5b88f6f8b66169d6a849762671816069e2a95c) - **docs:** update copy _(by Athan Reines)_
2528
- [`df7655b`](https://github.com/stdlib-js/stdlib/commit/df7655bacb00c52977be66799abbd482ac472502) - **chore:** modernize examples and benchmarks _(by Athan Reines)_
2629
- [`93bd6c2`](https://github.com/stdlib-js/stdlib/commit/93bd6c2029c3eef6bf8fcb239a4ddd18d86d434d) - **feat:** add `blas/base/ndarray/scopy` [(#11626)](https://github.com/stdlib-js/stdlib/pull/11626) _(by Kaustubh Patange, Athan Reines)_
2730

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ var bool = ( z === y );
8888

8989
The function has the following parameters:
9090

91-
- **arrays**: array-like object containing the following ndarrays in order:
91+
- **arrays**: array-like object containing the following ndarrays:
9292

93-
- input ndarray
94-
- output ndarray
93+
- a one-dimensional input ndarray.
94+
- a one-dimensional output ndarray.
9595

9696
</section>
9797

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/repl.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
Parameters
1010
----------
1111
arrays: ArrayLikeObject<ndarray>
12-
Array-like object containing an input ndarray and an output ndarray.
12+
Array-like object containing the following ndarrays:
13+
14+
- a one-dimensional input ndarray.
15+
- a one-dimensional output ndarray.
1316

1417
Returns
1518
-------

docs/types/index.d.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,14 @@ import { float32ndarray } from '@stdlib/types/ndarray';
2525
/**
2626
* Copies values from a one-dimensional single-precision floating-point ndarray `x` into a one-dimensional single-precision floating-point ndarray `y`.
2727
*
28-
* @param arrays - array-like object containing an input ndarray and an output ndarray
28+
* ## Notes
29+
*
30+
* - The function expects the following ndarrays:
31+
*
32+
* - a one-dimensional input ndarray.
33+
* - a one-dimensional output ndarray.
34+
*
35+
* @param arrays - array-like object containing ndarrays
2936
* @returns output ndarray
3037
*
3138
* @example

lib/main.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,14 @@ var strided = require( '@stdlib/blas-base-scopy' ).ndarray;
3232
/**
3333
* Copies values from a one-dimensional single-precision floating-point ndarray `x` into a one-dimensional single-precision floating-point ndarray `y`.
3434
*
35-
* @param {ArrayLikeObject<Object>} arrays - array-like object containing an input ndarray and an output ndarray
35+
* ## Notes
36+
*
37+
* - The function expects the following ndarrays:
38+
*
39+
* - a one-dimensional input ndarray.
40+
* - a one-dimensional output ndarray.
41+
*
42+
* @param {ArrayLikeObject<Object>} arrays - array-like object containing ndarrays
3643
* @returns {Object} output ndarray
3744
*
3845
* @example

0 commit comments

Comments
 (0)