10000 Auto-generated commit · stdlib-js/complex@2e12f29 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2e12f29

Browse files
committed
Auto-generated commit
1 parent ad1b052 commit 2e12f29

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

CHANGELOG.md

Lines changed: 2 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 (2025-01-17)
7+
## Unreleased (2025-01-18)
88

99
<section class="packages">
1010

@@ -102,6 +102,7 @@ A total of 2 people contributed to this release. Thank you to the following cont
102102

103103
<details>
104104

105+
- [`22a3dcf`](https://github.com/stdlib-js/stdlib/commit/22a3dcfe916b7f5c979d6ee93045d37add5d685d) - **docs:** update namespace TypeScript declaration comments [(#4794)](https://github.com/stdlib-js/stdlib/pull/4794) _(by stdlib-bot, Philipp Burckhardt)_
105106
- [`a0aef8f`](https://github.com/stdlib-js/stdlib/commit/a0aef8ff6010029008236151a684d1295a66f6a7) - **feat:** add `strided` API _(by Athan Reines)_
106107
- [`e93b466`](https://github.com/stdlib-js/stdlib/commit/e93b4667550eed6470a805d8e244764c6fe26525) - **feat:** add `assign` method _(by Athan Reines)_
107108
- [`40308a8`](https://github.com/stdlib-js/stdlib/commit/40308a8953dd480537d4c4359cc6e09f679e3ec1) - **build:** update configurations _(by Athan Reines)_

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

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,25 @@ interface Namespace {
8585
*
8686
* var im = imag( out );
8787
* // returns -1.0
88+
*
89+
* @example
90+
* var Float64Array = require( '@stdlib/array/float64' );
91+
*
92+
* var out = new Float64Array( 2 );
93+
* var v = ns.mul.assign( 5.0, 3.0, -2.0, 1.0, out, 1, 0 );
94+
* // returns <Float64Array>[ -13.0, -1.0 ]
95+
*
96+
* var bool = ( out === v );
97+
* // returns true
98+
*
99+
* @example
100+
* var Float64Array = require( '@stdlib/array/float64' );
101+
*
102+
* var z1 = new Float64Array( [ 5.0, 3.0 ] );
103+
* var z2 = new Float64Array( [ -2.0, 1.0 ] );
104+
*
105+
* var out = ns.mul.strided( z1, 1, 0, z2, 1, 0, new Float64Array( 2 ), 1, 0 );
106+
* // returns <Float64Array>[ -13.0, -1.0 ]
88107
*/
89108
mul: typeof mul;
90109
}

0 commit comments

Comments
 (0)
0