Skip to content

Commit 291850d

Browse files
committed
Auto-generated commit
1 parent afb2f08 commit 291850d

2 files changed

Lines changed: 42 additions & 1 deletion

File tree

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 (2024-07-19)
7+
## Unreleased (2024-07-21)
88

99
<section class="packages">
1010

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

519519
<details>
520520

521+
- [`9dc29b4`](https://github.com/stdlib-js/stdlib/commit/9dc29b4d2e6eb5ba0b2625c3bfe9f50034a3ed99) - **docs:** add sub-namespace sections and update namespace table of contents _(by Philipp Burckhardt)_
521522
- [`bd258a3`](https://github.com/stdlib-js/stdlib/commit/bd258a3c2803d841658c7465505966149845a6fb) - **feat:** update namespace TypeScript declarations [(#2628)](https://github.com/stdlib-js/stdlib/pull/2628) _(by stdlib-bot, Athan Reines)_
522523
- [`c89d08c`](https://github.com/stdlib-js/stdlib/commit/c89d08c3733ca6b6f1fab8d8ebc95663b8190b5e) - **feat:** add `assert` to namespace _(by Athan Reines)_
523524
- [`5bb602e`](https://github.com/stdlib-js/stdlib/commit/5bb602e63ab9d543d6f2702a556e7569d01277bb) - **feat:** add `complex/float64/base/assert` namespace _(by Athan Reines)_

README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,34 @@ var ns = complex;
7272
// returns {...}
7373
```
7474

75+
The namespace contains the following sub-namespaces:
76+
77+
<!-- <toc pattern="+(base)"> -->
78+
79+
<div class="namespace-toc">
80+
81+
- <span class="signature">[`base`][@stdlib/complex/float64/base]</span><span class="delimiter">: </span><span class="description">base (i.e., lower-level) double-precision complex floating-point number functions.</span>
82+
83+
</div>
84+
85+
<!-- </toc> -->
86+
7587
The namespace contains the following functions:
7688

7789
<!-- <toc pattern="*"> -->
7890

91+
<div class="namespace-toc">
92+
93+
- <span class="signature">[`conj( z )`][@stdlib/complex/float64/conj]</span><span class="delimiter">: </span><span class="description">return the complex conjugate of a double-precision complex floating-point number.</span>
94+
- <span class="signature">[`Complex128( real, imag )`][@stdlib/complex/float64/ctor]</span><span class="delimiter">: </span><span class="description">128-bit complex number.</span>
95+
- <span class="signature">[`imag( z )`][@stdlib/complex/float64/imag]</span><span class="delimiter">: </span><span class="description">return the imaginary component of a double-precision complex floating-point number.</span>
96+
- <span class="signature">[`parseComplex128( str )`][@stdlib/complex/float64/parse]</span><span class="delimiter">: </span><span class="description">parse a string representation of a 128-bit complex number.</span>
97+
- <span class="signature">[`real( z )`][@stdlib/complex/float64/real]</span><span class="delimiter">: </span><span class="description">return the real component of a double-precision complex floating-point number.</span>
98+
- <span class="signature">[`reim( z )`][@stdlib/complex/float64/reim]</span><span class="delimiter">: </span><span class="description">return the real and imaginary components of a double-precision complex floating-point number.</span>
99+
- <span class="signature">[`reviveComplex128( key, value )`][@stdlib/complex/float64/reviver]</span><span class="delimiter">: </span><span class="description">revive a JSON-serialized 128-bit complex number.</span>
100+
101+
</div>
102+
79103
<!-- </toc> -->
80104

81105
</section>
@@ -191,6 +215,22 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
191215

192216
<!-- <toc-links> -->
193217

218+
[@stdlib/complex/float64/conj]: https://github.com/stdlib-js/complex-float64-conj
219+
220+
[@stdlib/complex/float64/ctor]: https://github.com/stdlib-js/complex-float64-ctor
221+
222+
[@stdlib/complex/float64/imag]: https://github.com/stdlib-js/complex-float64-imag
223+
224+
[@stdlib/complex/float64/parse]: https://github.com/stdlib-js/complex-float64-parse
225+
226+
[@stdlib/complex/float64/real]: https://github.com/stdlib-js/complex-float64-real
227+
228+
[@stdlib/complex/float64/reim]: https://github.com/stdlib-js/complex-float64-reim
229+
230+
[@stdlib/complex/float64/reviver]: https://github.com/stdlib-js/complex-float64-reviver
231+
232+
[@stdlib/complex/float64/base]: https://github.com/stdlib-js/complex-float64-base
233+
194234
<!-- </toc-links> -->
195235

196236
</section>

0 commit comments

Comments
 (0)