Skip to content

Commit 8648a37

Browse files
committed
Auto-generated commit
1 parent 43cf795 commit 8648a37

File tree

4 files changed

+60
-1
lines changed

4 files changed

+60
-1
lines changed

.github/.keepalive

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

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,50 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2024-09-15)
8+
9+
<section class="bug-fixes">
10+
11+
### Bug Fixes
12+
13+
- [`91ad072`](https://github.com/stdlib-js/stdlib/commit/91ad07207eee217885975ce19d83e85d1f4a6499) - add missing property
14+
15+
</section>
16+
17+
<!-- /.bug-fixes -->
18+
19+
<section class="commits">
20+
21+
### Commits
22+
23+
<details>
24+
25+
- [`91ad072`](https://github.com/stdlib-js/stdlib/commit/91ad07207eee217885975ce19d83e85d1f4a6499) - **fix:** add missing property _(by Athan Reines)_
26+
27+
</details>
28+
29+
</section>
30+
31+
<!-- /.commits -->
32+
33+
<section class="contributors">
34+
35+
### Contributors
36+
37+
A total of 1 person contributed to this release. Thank you to this contributor:
38+
39+
- Athan Reines
40+
41+
</section>
42+
43+
<!-- /.contributors -->
44+
45+
</section>
46+
47+
<!-- /.release -->
48+
549
<section class="release" id="v0.3.0">
650

751
## 0.3.0 (2024-07-29)

CONTRIBUTORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,13 @@ EuniceSim142 <[email protected]>
2626
Frank Kovacs <[email protected]>
2727
Golden Kumar <[email protected]>
2828
Gunj Joshi <[email protected]>
29+
2930
Harshita Kalani <[email protected]>
3031
Hridyanshu <[email protected]>
3132
Jaimin Godhani <[email protected]>
3233
James Gelok <[email protected]>
3334
Jaysukh Makvana <[email protected]>
35+
Jenish Thapa <[email protected]>
3436
Jithin KS <[email protected]>
3537
Joel Mathew Koshy <[email protected]>
3638
Joey Reed <[email protected]>
@@ -86,8 +88,10 @@ Stephannie Jiménez Gacha <[email protected]>
8688
Suraj kumar <[email protected]>
8789
Tirtadwipa Manunggal <[email protected]>
8890
Tudor Pagu <[email protected]>
91+
Tufailahmed Bargir <[email protected]>
8992
Utkarsh <http://[email protected]>
9093
Utkarsh Raj <[email protected]>
94+
Vaibhav Patel <[email protected]>
9195
Varad Gupta <[email protected]>
9296
Xiaochuan Ye <[email protected]>
9397
Yernar Yergaziyev <[email protected]>
@@ -96,3 +100,4 @@ nishant-s7 <[email protected]>
96100
orimiles5 <[email protected]>
97101
98102
103+

docs/types/index.d.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,17 @@ declare class Complex64Array implements Complex64ArrayInterface {
368368
*/
369369
at( i: number ): Complex64 | void;
370370

371+
/**
372+
* Pointer to the underlying data buffer.
373+
*
374+
* @example
375+
* var arr = new Complex64Array( 10 );
376+
*
377+
* var buf = arr.buffer;
378+
* // returns <ArrayBuffer>
379+
*/
380+
readonly buffer: ArrayBuffer;
381+
371382
/**
372383
* Length (in bytes) of the array.
373384
*

0 commit comments

Comments
 (0)