You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -504,6 +504,7 @@ A total of 46 issues were closed in this release:
504
504
505
505
<details>
506
506
507
+
-[`56cd0bf`](https://github.com/stdlib-js/stdlib/commit/56cd0bfb6e3d98349a2062e3ac26668f58ba09bb) - **refactor:** use tuple for return type _(by Karan Anand)_
-[`8f57742`](https://github.com/stdlib-js/stdlib/commit/8f577423535f8ef0639a0306538771f980af6fbb) - **refactor:** use tuple for return type _(by Karan Anand)_
Copy file name to clipboardExpand all lines: base/special/frexp/docs/types/index.d.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ interface Frexp {
62
62
* var out = frexp( -Infinity );
63
63
* // returns [ -Infinity , 0 ]
64
64
*/
65
-
(x: number): Array<number>;
65
+
(x: number): [number,number];
66
66
67
67
/**
68
68
* Splits a double-precision floating-point number into a normalized fraction and an integer power of two and assigns results to a provided output array.
Copy file name to clipboardExpand all lines: base/special/frexpf/docs/types/index.d.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ interface Frexpf {
62
62
* var out = frexpf( -Infinity );
63
63
* // returns [ -Infinity , 0 ]
64
64
*/
65
-
(x: number): Array<number>;
65
+
(x: number): [number,number];
66
66
67
67
/**
68
68
* Splits a single-precision floating-point number into a normalized fraction and an integer power of two and assigns results to a provided output array.
0 commit comments