Skip to content

Commit fbdd512

Browse files
committed
Auto-generated commit
1 parent f83efbf commit fbdd512

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

CHANGELOG.md

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

7-
## Unreleased (2026-02-28)
7+
## Unreleased (2026-03-01)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`afc394d`](https://github.com/stdlib-js/stdlib/commit/afc394d4872cb71e63ab6f67402ddb7de3fd697f) - **docs:** update REPL namespace documentation [(#10585)](https://github.com/stdlib-js/stdlib/pull/10585) _(by stdlib-bot, Philipp Burckhardt)_
1516
- [`cde3eaa`](https://github.com/stdlib-js/stdlib/commit/cde3eaa0ce2ef0013f69cd458a3ae17b1ed57e56) - **docs:** update REPL namespace documentation [(#10559)](https://github.com/stdlib-js/stdlib/pull/10559) _(by stdlib-bot)_
1617
- [`33a845a`](https://github.com/stdlib-js/stdlib/commit/33a845af56916162ec6229a6ea8c51b48017ac20) - **docs:** update REPL namespace documentation [(#10478)](https://github.com/stdlib-js/stdlib/pull/10478) _(by stdlib-bot)_
1718
- [`a20ca4a`](https://github.com/stdlib-js/stdlib/commit/a20ca4a869cb0f37fce36449969104314f3e78c8) - **docs:** update REPL namespace documentation [(#10309)](https://github.com/stdlib-js/stdlib/pull/10309) _(by stdlib-bot, Philipp Burckhardt)_

data/data.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2541,7 +2541,7 @@ base.toBinaryStringUint32,"\nbase.toBinaryStringUint32( x )\n Returns a strin
25412541
base.toWordf,"\nbase.toWordf( x )\n Returns an unsigned 32-bit integer corresponding to the IEEE 754 binary\n representation of a single-precision floating-point number.\n\n Parameters\n ----------\n x: float\n Single-precision floating-point number.\n\n Returns\n -------\n out: integer\n Unsigned 32-bit integer.\n\n Examples\n --------\n > var f32 = base.float64ToFloat32( 1.337 )\n 1.3370000123977661\n > var w = base.toWordf( f32 )\n 1068180177\n\n See Also\n --------\n base.fromWordf, base.toWords\n"
25422542
base.toWords,"\nbase.toWords( x )\n Splits a double-precision floating-point number into a higher order word\n (unsigned 32-bit integer) and a lower order word (unsigned 32-bit integer).\n\n When provided a destination object, the function returns an array with two\n elements: a higher order word and a lower order word, respectively. The\n lower order word contains the less significant bits, while the higher order\n word contains the more significant bits and includes the exponent and sign.\n\n Parameters\n ----------\n x: number\n Double-precision floating-point number.\n\n Returns\n -------\n out: Array<integer>\n Higher and lower order words.\n\n Examples\n --------\n > var w = base.toWords( 3.14e201 )\n [ 1774486211, 2479577218 ]\n\n\nbase.toWords.assign( x, out, stride, offset )\n Splits a double-precision floating-point number into a higher order word\n (unsigned 32-bit integer) and a lower order word (unsigned 32-bit integer)\n and assigns results to a provided output array.\n\n When provided a destination object, the function returns an array with two\n elements: a higher order word and a lower order word, respectively. The\n lower order word contains the less significant bits, while the higher order\n word contains the more significant bits and includes the exponent and sign.\n\n Parameters\n ----------\n x: number\n Double-precision floating-point number.\n\n out: Array|TypedArray|Object\n Output array.\n\n stride: integer\n Output array stride.\n\n offset: integer\n Output array index offset.\n\n Returns\n -------\n out: Array|TypedArray|Object\n Higher and lower order words.\n\n Examples\n --------\n > var out = new Uint32Array( 2 );\n > var w = base.toWords.assign( 3.14e201, out, 1, 0 )\n <Uint32Array>[ 1774486211, 2479577218 ]\n > var bool = ( w === out )\n true\n\n See Also\n --------\n base.fromWords, base.toWordf"
25432543
base.toWords.assign,"\nbase.toWords.assign( x, out, stride, offset )\n Splits a double-precision floating-point number into a higher order word\n (unsigned 32-bit integer) and a lower order word (unsigned 32-bit integer)\n and assigns results to a provided output array.\n\n When provided a destination object, the function returns an array with two\n elements: a higher order word and a lower order word, respectively. The\n lower order word contains the less significant bits, while the higher order\n word contains the more significant bits and includes the exponent and sign.\n\n Parameters\n ----------\n x: number\n Double-precision floating-point number.\n\n out: Array|TypedArray|Object\n Output array.\n\n stride: integer\n Output array stride.\n\n offset: integer\n Output array index offset.\n\n Returns\n -------\n out: Array|TypedArray|Object\n Higher and lower order words.\n\n Examples\n --------\n > var out = new Uint32Array( 2 );\n > var w = base.toWords.assign( 3.14e201, out, 1, 0 )\n <Uint32Array>[ 1774486211, 2479577218 ]\n > var bool = ( w === out )\n true\n\n See Also\n --------\n base.fromWords, base.toWordf"
2544-
base.transpose,"\nbase.transpose( x )\n Transposes a matrix (or a stack of matrices).\n\n The returned ndarray is a *view* of the input ndarray. Accordingly, writing\n to the original ndarray will mutate the returned ndarray and vice versa.\n While powerful, this can lead to subtle bugs. In general, one should handle\n the returned ndarray as read-only.\n\n If provided an ndarray with fewer than two dimensions, the function raises\n an exception.\n\n Parameters\n ----------\n x: ndarray\n Input array.\n\n Returns\n -------\n out: ndarray\n Output array.\n\n Examples\n --------\n > var x = array( [ [ 1, 2, 3 ], [ 4, 5, 6 ] ] )\n <ndarray>\n > var sh = x.shape\n [ 2, 3 ]\n > var y = base.transpose( x )\n <ndarray>\n > sh = y.shape\n [ 3, 2 ]\n > var bool = ( x.data === y.data )\n true\n > bool = ( x.get( 0, 1 ) === y.get( 1, 0 ) )\n true\n\n See Also\n --------\n ndarray\n"
2544+
base.transpose,"\nbase.transpose( x, writable )\n Transposes a matrix (or a stack of matrices).\n\n The returned ndarray is a *view* of the input ndarray. Accordingly, writing\n to the original ndarray will mutate the returned ndarray and vice versa.\n\n The `writable` parameter only applies to ndarray constructors supporting\n read-only instances.\n\n If provided an ndarray with fewer than two dimensions, the function raises\n an exception.\n\n Parameters\n ----------\n x: ndarray\n Input array.\n\n writable: boolean\n Boolean indicating whether the returned ndarray should be writable.\n\n Returns\n -------\n out: ndarray\n Output array.\n\n Examples\n --------\n > var x = array( [ [ 1, 2, 3 ], [ 4, 5, 6 ] ] )\n <ndarray>[ [ 1, 2, 3 ], [ 4, 5, 6 ] ]\n > var y = base.transpose( x, false )\n <ndarray>[ [ 1, 4 ], [ 2, 5 ], [ 3, 6 ] ]\n\n See Also\n --------\n ndarray\n"
25452545
base.tribonacci,"\nbase.tribonacci( n )\n Computes the nth Tribonacci number.\n\n Tribonacci numbers follow the recurrence relation\n\n F_n = F_{n-1} + F_{n-2} + F_{n-3}\n\n with seed values F_0 = 0, F_1 = 0, and F_2 = 1.\n\n If `n` is greater than `63`, the function returns `NaN`, as larger\n Tribonacci numbers cannot be accurately represented due to limitations of\n double-precision floating-point format.\n\n If not provided a nonnegative integer value, the function returns `NaN`.\n\n If provided `NaN`, the function returns `NaN`.\n\n Parameters\n ----------\n n: integer\n Input value.\n\n Returns\n -------\n y: integer\n Tribonacci number.\n\n Examples\n --------\n > var y = base.tribonacci( 0 )\n 0\n > y = base.tribonacci( 1 )\n 0\n > y = base.tribonacci( 2 )\n 1\n > y = base.tribonacci( 3 )\n 1\n > y = base.tribonacci( 4 )\n 2\n > y = base.tribonacci( 64 )\n NaN\n > y = base.tribonacci( NaN )\n NaN\n\n See Also\n --------\n base.fibonacci\n"
25462546
base.trigamma,"\nbase.trigamma( x )\n Evaluates the trigamma function.\n\n If `x` is `0` or a negative `integer`, the `function` returns `NaN`.\n\n If provided `NaN`, the `function` returns `NaN`.\n\n Parameters\n ----------\n x: number\n Input value.\n\n Returns\n -------\n y: number\n Function value.\n\n Examples\n --------\n > var y = base.trigamma( -2.5 )\n ~9.539\n > y = base.trigamma( 1.0 )\n ~1.645\n > y = base.trigamma( 10.0 )\n ~0.105\n > y = base.trigamma( NaN )\n NaN\n > y = base.trigamma( -1.0 )\n NaN\n\n See Also\n --------\n base.digamma, base.gamma\n"
25472547
base.trim,"\nbase.trim( str )\n Trims whitespace from the beginning and end of a `string`.\n\n \"Whitespace\" is defined as the following characters:\n\n - \f\n - \n\n - \r\n - \t\n - \v\n - \u0020\n - \u00a0\n - \u1680\n - \u2000-\u200a\n - \u2028\n - \u2029\n - \u202f\n - \u205f\n - \u3000\n - \ufeff\n\n Parameters\n ----------\n str: string\n Input string.\n\n Returns\n -------\n out: string\n Trimmed string.\n\n Examples\n --------\n > var out = base.trim( ' \t\t\n Beep \r\n\t ' )\n 'Beep'\n\n See Also\n --------\n base.leftTrim, base.rightTrim\n"

data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)