Skip to content

Commit c690370

Browse files
committed
Auto-generated commit
1 parent aa1334f commit c690370

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

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 (2025-12-17)
7+
## Unreleased (2025-12-20)
88

99
<section class="features">
1010

@@ -42,6 +42,7 @@
4242

4343
<details>
4444

45+
- [`1af75ce`](https://github.com/stdlib-js/stdlib/commit/1af75ce8ffaff0ad623426831eea9b12e00db694) - **docs:** update REPL namespace documentation [(#9269)](https://github.com/stdlib-js/stdlib/pull/9269) _(by stdlib-bot)_
4546
- [`7f83de8`](https://github.com/stdlib-js/stdlib/commit/7f83de89a15457eff3bde178383c587b75854dda) - **docs:** update REPL namespace documentation [(#9115)](https://github.com/stdlib-js/stdlib/pull/9115) _(by stdlib-bot, Philipp Burckhardt)_
4647
- [`c4d8bf6`](https://github.com/stdlib-js/stdlib/commit/c4d8bf6ce2e9731a17f6985d7dc1037e5a2527ba) - **docs:** update REPL namespace documentation [(#9037)](https://github.com/stdlib-js/stdlib/pull/9037) _(by stdlib-bot)_
4748
- [`e33b198`](https://github.com/stdlib-js/stdlib/commit/e33b198da3d2b53aeffda7517b202432894ecf2b) - **docs:** update REPL namespace documentation [(#9018)](https://github.com/stdlib-js/stdlib/pull/9018) _(by stdlib-bot)_

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,8 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
271271
272272
-->
273273

274-
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
275-
[chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im
274+
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
275+
[chat-url]: https://stdlib.zulipchat.com
276276

277277
[stdlib]: https://github.com/stdlib-js/stdlib
278278

data/data.csv

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2654,7 +2654,8 @@ codePointAt,"\ncodePointAt( str, idx[, backward] )\n Returns a Unicode code p
26542654
commonKeys,"\ncommonKeys( obj1, obj2[, ...obj] )\n Returns the common own property names of two or more objects.\n\n Parameters\n ----------\n obj1: any\n First object.\n\n obj2: any\n Second object.\n\n obj: ...any (optional)\n Additional objects.\n\n Returns\n -------\n out: Array<string>\n Common keys of objects.\n\n Examples\n --------\n > var obj1 = { 'a': 1, 'b': 2 };\n > var obj2 = { 'a': 1, 'b': 2, 'c': 3, 'd': 4 };\n > var keys = commonKeys( obj1, obj2 )\n [ 'a', 'b' ]\n\n See Also\n --------\n commonKeysIn, objectKeys"
26552655
commonKeysIn,"\ncommonKeysIn( obj1, obj2[, ...obj] )\n Returns the common own and inherited property names of two or more objects.\n\n Parameters\n ----------\n obj1: any\n First object.\n\n obj2: any\n Second object.\n\n obj: ...any (optional)\n Additional objects.\n\n Returns\n -------\n out: Array<string>\n Common keys.\n\n Examples\n --------\n > var obj1 = { 'a': 1, 'b': 2 };\n > var obj2 = { 'a': 1, 'b': 2, 'c': 3, 'd': 4 };\n > var keys = commonKeysIn( obj1, obj2 )\n [ 'a', 'b' ]\n\n See Also\n --------\n commonKeys, keysIn"
26562656
complex,"\ncomplex( real, imag[, dtype] )\n Creates a complex number.\n\n The function supports the following data types:\n\n - float64\n - float32\n\n Parameters\n ----------\n real: number\n Real component.\n\n imag: number\n Imaginary component.\n\n dtype: string (optional)\n Data type. Default: 'float64'.\n\n Returns\n -------\n z: Complex\n Complex number.\n\n Examples\n --------\n > var z = complex( 5.0, 3.0, 'float64' )\n <Complex128>\n > z = complex( 5.0, 3.0, 'float32' )\n <Complex64>\n\n See Also\n --------\n Complex128, Complex64\n"
2657-
Complex64,"\nComplex64( real, imag )\n 64-bit complex number constructor.\n\n Both the real and imaginary components are stored as single-precision\n floating-point numbers.\n\n Parameters\n ----------\n real: number\n Real component.\n\n imag: number\n Imaginary component.\n\n Returns\n -------\n z: Complex64\n 64-bit complex number.\n\n z.re: number\n Read-only property returning the real component.\n\n z.im: number\n Read-only property returning the imaginary component.\n\n Examples\n --------\n > var z = new Complex64( 5.0, 3.0 )\n <Complex64>\n > z.re\n 5.0\n > z.im\n 3.0\n\n\nComplex64.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n v: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var s = Complex64.BYTES_PER_ELEMENT\n 4\n\n\nComplex64.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n s: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var z = new Complex64( 5.0, 3.0 )\n <Complex64>\n > var s = z.BYTES_PER_ELEMENT\n 4\n\n\nComplex64.prototype.byteLength\n Length (in bytes) of a complex number.\n\n Returns\n -------\n len: integer\n Length (in bytes) of a complex number.\n\n Examples\n --------\n > var z = new Complex64( 5.0, 3.0 )\n <Complex64>\n > var s = z.byteLength\n 8\n\n See Also\n --------\n complex, Complex128\n"
2657+
Complex64,"\nComplex64( real, imag )\n 64-bit complex number constructor.\n\n Both the real and imaginary components are stored as single-precision\n floating-point numbers.\n\n Parameters\n ----------\n real: number\n Real component.\n\n imag: number\n Imaginary component.\n\n Returns\n -------\n z: Complex64\n 64-bit complex number.\n\n z.re: number\n Read-only property returning the real component.\n\n z.im: number\n Read-only property returning the imaginary component.\n\n Examples\n --------\n > var z = new Complex64( 5.0, 3.0 )\n <Complex64>\n > z.re\n 5.0\n > z.im\n 3.0\n\n\nComplex64.name\n Constructor name.\n\n Examples\n --------\n > var str = Complex64.name\n 'Complex64'\n\n\nComplex64.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n v: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var s = Complex64.BYTES_PER_ELEMENT\n 4\n\n\nComplex64.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n s: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var z = new Complex64( 5.0, 3.0 )\n <Complex64>\n > var s = z.BYTES_PER_ELEMENT\n 4\n\n\nComplex64.prototype.byteLength\n Length (in bytes) of a complex number.\n\n Returns\n -------\n len: integer\n Length (in bytes) of a complex number.\n\n Examples\n --------\n > var z = new Complex64( 5.0, 3.0 )\n <Complex64>\n > var s = z.byteLength\n 8\n\n See Also\n --------\n complex, Complex128\n"
2658+
Complex64.name,"\nComplex64.name\n Constructor name.\n\n Examples\n --------\n > var str = Complex64.name\n 'Complex64'"
26582659
Complex64.BYTES_PER_ELEMENT,"\nComplex64.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n v: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var s = Complex64.BYTES_PER_ELEMENT\n 4"
26592660
Complex64.prototype.BYTES_PER_ELEMENT,"\nComplex64.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n s: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var z = new Complex64( 5.0, 3.0 )\n <Complex64>\n > var s = z.BYTES_PER_ELEMENT\n 4"
26602661
Complex64.prototype.byteLength,"\nComplex64.prototype.byteLength\n Length (in bytes) of a complex number.\n\n Returns\n -------\n len: integer\n Length (in bytes) of a complex number.\n\n Examples\n --------\n > var z = new Complex64( 5.0, 3.0 )\n <Complex64>\n > var s = z.byteLength\n 8\n\n See Also\n --------\n complex, Complex128"
@@ -2703,7 +2704,8 @@ Complex64Array.prototype.toSorted,"\nComplex64Array.prototype.toSorted( compareF
27032704
Complex64Array.prototype.toString,"\nComplex64Array.prototype.toString()\n Serializes an array as a string.\n\n Returns\n -------\n str: string\n String serialization of the array.\n \n Examples\n --------\n > var arr = new Complex64Array( [ 1.0, 1.0, 2.0, -2.0, 3.0, 3.0 ] )\n <Complex64Array>\n > var str = arr.toString()\n '1 + 1i,2 - 2i,3 + 3i'"
27042705
Complex64Array.prototype.values,"\nComplex64Array.prototype.values()\n Returns an iterator for iterating over each value in a typed array.\n\n Returns\n -------\n iterator: Iterator\n Iterator for iterating over array values.\n \n Examples\n --------\n > var arr = new Complex64Array( [ 1.0, -1.0, 2.0, -2.0 ] )\n <Complex64Array>\n > var it = arr.values();\n > var v = it.next().value\n <Complex64>\n > var re = realf( v )\n 1.0\n > var im = imagf( v )\n -1.0\n > v = it.next().value\n <Complex64>\n > re = realf( v )\n 2.0\n > im = imagf( v )\n -2.0\n > var bool = it.next().done\n true"
27052706
Complex64Array.prototype.with,"\nComplex64Array.prototype.with( index, value )\n Returns a new typed array with the element at a provided index replaced\n with a provided value.\n\n Parameters\n ----------\n index: integer\n Element index.\n \n value: Complex64\n Element value. \n\n Returns\n -------\n out: Complex64Array\n New typed array.\n \n Examples\n --------\n > var arr = new Complex64Array( [ 1.0, -1.0, 2.0, -2.0 ] )\n <Complex64Array>\n > var out = arr.with( 1, new Complex64( 3.0, -3.0 ) )\n <Complex64Array>\n > var z = out.get( 1 )\n <Complex64>\n > var re = realf( z )\n 3.0\n > var im = imagf( z )\n -3.0\n\n\n See Also\n --------\n Complex128Array, complex, Complex64"
2706-
Complex128,"\nComplex128( real, imag )\n 128-bit complex number constructor.\n\n Both the real and imaginary components are stored as double-precision\n floating-point numbers.\n\n Parameters\n ----------\n real: number\n Real component.\n\n imag: number\n Imaginary component.\n\n Returns\n -------\n z: Complex128\n 128-bit complex number.\n\n z.re: number\n Read-only property returning the real component.\n\n z.im: number\n Read-only property returning the imaginary component.\n\n\nComplex128.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n v: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var s = Complex128.BYTES_PER_ELEMENT\n 8\n\n\nComplex128.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n s: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var z = new Complex128( 5.0, 3.0 )\n <Complex128>\n > var s = z.BYTES_PER_ELEMENT\n 8\n\n\nComplex128.prototype.byteLength\n Length (in bytes) of a complex number.\n\n Returns\n -------\n len: integer\n Length (in bytes) of a complex number.\n\n Examples\n --------\n > var z = new Complex128( 5.0, 3.0 )\n <Complex128>\n > var s = z.byteLength\n 16\n\n See Also\n --------\n complex, Complex64\n"
2707+
Complex128,"\nComplex128( real, imag )\n 128-bit complex number constructor.\n\n Both the real and imaginary components are stored as double-precision\n floating-point numbers.\n\n Parameters\n ----------\n real: number\n Real component.\n\n imag: number\n Imaginary component.\n\n Returns\n -------\n z: Complex128\n 128-bit complex number.\n\n z.re: number\n Read-only property returning the real component.\n\n z.im: number\n Read-only property returning the imaginary component.\n\n\nComplex128.name\n Constructor name.\n\n Examples\n --------\n > var str = Complex128.name\n 'Complex128'\n\n\nComplex128.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n v: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var s = Complex128.BYTES_PER_ELEMENT\n 8\n\n\nComplex128.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n s: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var z = new Complex128( 5.0, 3.0 )\n <Complex128>\n > var s = z.BYTES_PER_ELEMENT\n 8\n\n\nComplex128.prototype.byteLength\n Length (in bytes) of a complex number.\n\n Returns\n -------\n len: integer\n Length (in bytes) of a complex number.\n\n Examples\n --------\n > var z = new Complex128( 5.0, 3.0 )\n <Complex128>\n > var s = z.byteLength\n 16\n\n See Also\n --------\n complex, Complex64\n"
2708+
Complex128.name,"\nComplex128.name\n Constructor name.\n\n Examples\n --------\n > var str = Complex128.name\n 'Complex128'"
27072709
Complex128.BYTES_PER_ELEMENT,"\nComplex128.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n v: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var s = Complex128.BYTES_PER_ELEMENT\n 8"
27082710
Complex128.prototype.BYTES_PER_ELEMENT,"\nComplex128.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each component.\n\n Returns\n -------\n s: integer\n Size (in bytes) of each component.\n\n Examples\n --------\n > var z = new Complex128( 5.0, 3.0 )\n <Complex128>\n > var s = z.BYTES_PER_ELEMENT\n 8"
27092711
Complex128.prototype.byteLength,"\nComplex128.prototype.byteLength\n Length (in bytes) of a complex number.\n\n Returns\n -------\n len: integer\n Length (in bytes) of a complex number.\n\n Examples\n --------\n > var z = new Complex128( 5.0, 3.0 )\n <Complex128>\n > var s = z.byteLength\n 16\n\n See Also\n --------\n complex, Complex64"

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)