8000 Auto-generated commit · stdlib-js/complex@8eef36c · GitHub
[go: up one dir, main page]

Skip to content

Commit 8eef36c

Browse files
committed
Auto-generated commit
1 parent e93b5c9 commit 8eef36c

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

CHANGELOG.md

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

7-
## Unreleased (2024-09-21)
7+
## Unreleased (2024-09-28)
88

99
<section class="packages">
1010

@@ -32,6 +32,8 @@ A total of 1 person contributed to this release. Thank you to this contributor:
3232

3333
<details>
3434

35+
- [`58f787f`](https://github.com/stdlib-js/stdlib/commit/58f787fa43b56f5c5480542d6f91f5038574dbfb) - **chore:** use ComplexLike type _(by Philipp Burckhardt)_
36+
- [`975147f`](https://github.com/stdlib-js/stdlib/commit/975147f3125c786ec1672acb3d2564ca16eaa790) - **docs:** fix TSDoc lint errors _(by Philipp Burckhardt)_
3537
- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_
3638
- [`f387603`](https://github.com/stdlib-js/stdlib/commit/f387603e739f88a38af3263ce6ff675ad903ee8c) - **docs:** consistently use declarative instead of imperative sentences outside of intros _(by Philipp Burckhardt)_
3739
- [`ed44fee`](https://github.com/stdlib-js/stdlib/commit/ed44feecb9eaa5e0849d1a533e5415624d0aa338) - **style:** use imperative in package.json description and end with period _(by Philipp Burckhardt)_
@@ -1698,7 +1700,7 @@ A total of 6 people contributed to this release. Thank you to the following cont
16981700

16991701
- Athan Reines
17001702
- Philipp Burckhardt
1701-
- Pranav
1703+
- Pranav Goswami
17021704
- Rejoan Sardar
17031705
- Snehil Shah
17041706
- Spandan Barve

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Christopher Dambamuromo <chridam@gmail.com>
2121
Dan Rose <danoftheroses@gmail.com>
2222
Daniel Killenberger <daniel.killenberger@gmail.com>
2323
Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
24+
Debashis Maharana <debashismaharana7854@gmail.com>
2425
Dominik Moritz <domoritz@gmail.com>
2526
Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
2627
EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com>
@@ -99,6 +100,7 @@ Xiaochuan Ye <tap91624@gmail.com>
99100
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
100101
naveen <stupiddint@gmail.com>
101102
nishant-s7 <97207366+nishant-s7@users.noreply.github.com>
103+
olenkabilonizhka <62379231+olenkabilonizhka@users.noreply.github.com>
102< 10000 /code>104
orimiles5 <97595296+orimiles5@users.noreply.github.com>
103105
rainn <88160429+AmCodesLame@users.noreply.github.com>
104106
rei2hu <reimu@reimu.ws>

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,14 @@
1818

1919
// TypeScript Version: 4.1
2020

21+
/// <reference types="@stdlib/types"/>
22+
23+
import { ComplexLike } from '@stdlib/types/complex';
24+
2125
/**
2226
* Parses a string representing a complex number into a complex like object.
2327
*
24-
* @param str
28+
* @param str - input string
2529
* @returns complex like object
2630
*
2731
* @example
@@ -32,7 +36,7 @@
3236
* var z = parse( str );
3337
* returns { re : 4, im : 6 }
3438
*/
35-
declare function parse( str: string ): {re: number; im: number} | null;
39+
declare function parse( str: string ): ComplexLike | null;
3640

3741

3842
// EXPORTS //

float64/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ interface Namespace {
8787
* Parse a string representation of a 128-bit complex number.
8888
*
8989
* @param str - string representation of a complex number
90-
* @returns Complex128 instance
9190
* @throws must provide a string recognized as a complex number
91+
* @returns Complex128 instance
9292
*
9393
* @example
9494
* var str = '5 + 3i';

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ import { Complex128 } from '@stdlib/types/complex';
2929
* Parse a string representation of a 128-bit complex number.
3030
*
3131
* @param str - string representation of a complex number
32-
* @returns Complex128 instance
3332
* @throws must provide a string recognized as a complex number
33+
* @returns Complex128 instance
3434
*
3535
* @example
3636
* var str = '5 + 3i';

0 commit comments

Comments
 (0)
0