Skip to content

Commit 4d07160

Browse files
committed
Auto-generated commit
1 parent f3e1fa8 commit 4d07160

5 files changed

Lines changed: 6 additions & 12 deletions

File tree

.github/.keepalive

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

CHANGELOG.md

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

7-
## Unreleased (2026-05-09)
7+
## Unreleased (2026-05-10)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`97a16c0`](https://github.com/stdlib-js/stdlib/commit/97a16c0cb60755f05223176714532bb47d2c914d) - **docs:** improve doctests for complex number typed arrays in `array/complex64` [(#12072)](https://github.com/stdlib-js/stdlib/pull/12072) _(by Karan Anand)_
1516
- [`a67c356`](https://github.com/stdlib-js/stdlib/commit/a67c35688a0009092f281d79378c4c53cb226bd5) - **docs:** improve doctests for complex number instances in `array/complex64` [(#11972)](https://github.com/stdlib-js/stdlib/pull/11972) _(by Karan Anand)_
1617
- [`9efe7df`](https://github.com/stdlib-js/stdlib/commit/9efe7df13c315e32a9e938830a15f874fb1cb4a0) - **bench:** refactor to use string interpolation in `array/complex64` [(#10302)](https://github.com/stdlib-js/stdlib/pull/10302) _(by Shubham)_
1718

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/types/index.d.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -444,10 +444,7 @@ declare class Complex64Array implements Complex64ArrayInterface {
444444
*
445445
* // Copy the first two elements to the last two elements:
446446
* arr.copyWithin( 2, 0, 2 );
447-
*
448-
* // Get the last array element:
449-
* var z = arr.get( 3 );
450-
* // returns <Complex64>[ 2.0, 2.0 ]
447+
* // arr => <Complex64Array>[ 1.0, 1.0, 2.0, 2.0, 1.0, 1.0, 2.0, 2.0 ]
451448
*/
452449
copyWithin( target: number, start: number, end?: number ): Complex64Array;
453450

lib/main.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -683,10 +683,7 @@ setReadOnly( Complex64Array.prototype, 'BYTES_PER_ELEMENT', Complex64Array.BYTES
683683
*
684684
* // Copy the first two elements to the last two elements:
685685
* arr.copyWithin( 2, 0, 2 );
686-
*
687-
* // Get the last array element:
688-
* var z = arr.get( 3 );
689-
* // returns <Complex64>[ 2.0, 2.0 ]
686+
* // arr => <Complex64Array>[ 1.0, 1.0, 2.0, 2.0, 1.0, 1.0, 2.0, 2.0 ]
690687
*/
691688
setReadOnly( Complex64Array.prototype, 'copyWithin', function copyWithin( target, start ) {
692689
if ( !isComplexArray( this ) ) {

0 commit comments

Comments
 (0)