8000 Auto-generated commit · stdlib-js/array-complex128@aba9df7 · GitHub
[go: up one dir, main page]

Skip to content

Commit aba9df7

Browse files
committed
Auto-generated commit
1 parent 581bafa commit aba9df7

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+
- [`8d3352e`](https://github.com/stdlib-js/stdlib/commit/8d3352e666353624f97e95ee0805b7d641fc775a) - add missing property
14+
15+
</section>
16+
17+
<!-- /.bug-fixes -->
18+
19+
<section class="commits">
20+
21+
### Commits
22+
23+
<details>
24+
25+
- [`8d3352e`](https://github.com/stdlib-js/stdlib/commit/8d3352e666353624f97e95ee0805b7d641fc775a) - **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 <77243938+EuniceSim142@users.noreply.github.com>
2626
Frank Kovacs <fran70kk@gmail.com>
2727
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
2828
Gunj Joshi <gunjjoshi8372@gmail.com>
29+
HarshaNP <96897754+GittyHarsha@users.noreply.github.com>
2930
Harshita Kalani <harshitakalani02@gmail.com>
3031
Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com>
3132
Jaimin Godhani <112328542+Jai0401@users.noreply.github.com>
3233
James Gelok <jdgelok@gmail.com>
3334
Jaysukh Makvana <jaysukhmakvana2004@gmail.com>
35+
Jenish Thapa <141203631+jenish-thapa@users.noreply.github.com>
3436
Jithin KS <jithinks112@gmail.com>
3537
Joel Mathew Koshy <joelmathewkoshy@gmail.com>
3638
Joey Reed <joeyrreed@gmail.com>
@@ -86,8 +88,10 @@ Stephannie Jiménez Gacha <steff456@hotmail.com>
8688
Suraj kumar <125961509+kumarsuraj212003@users.noreply.github.com>
8789
Tirtadwipa Manunggal <tirtadwipa.manunggal@gmail.com>
8890
Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com>
91+
Tufailahmed Bargir <142114244+Tufailahmed-Bargir@users.noreply.github.com>
8992
Utkarsh <http://utkarsh11105@gmail.com>
9093
Utkarsh Raj <rajutkarsh2505@gmail.com>
94+
Vaibhav Patel <98279986+noobCoderVP@users.noreply.github.com>
9195
Varad Gupta <varadgupta21@gmail.com>
9296
Xiaochuan Ye <tap91624@gmail.com>
9397
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
@@ -96,3 +100,4 @@ nishant-s7 <97207366+nishant-s7@users.noreply.github.com>
96100
orimiles5 <97595296+orimiles5@users.noreply.github.com>
97101
rainn <88160429+AmCodesLame@users.noreply.github.com>
98102
rei2hu <reimu@reimu.ws>
103+
yaswanth <116426380+yaswanthkosuru@users.noreply.github.com>

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 Complex128Array implements Complex128ArrayInterface {
368368
*/
369369
at( i: number ): Complex128 | void;
370370

371+
/**
372+
* Pointer to the underlying data buffer.
373+
*
374+
* @example
375+
* var arr = new Complex128Array( 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)
0