Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jun 18, 2024
1 parent aefd419 commit 7e164ae
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 10 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-06-17)
## Unreleased (2024-06-18)

<section class="packages">

Expand Down Expand Up @@ -76,6 +76,7 @@ A total of 4 issues were closed in this release:

##### Features

- [`89026af`](https://github.com/stdlib-js/stdlib/commit/89026afb85fbfa45556d4921686c62092f4fe8b8) - add `aput` to namespace
- [`0f9acd1`](https://github.com/stdlib-js/stdlib/commit/0f9acd17de012dfe755c98b602d6bb3dbe1e8117) - add `BooleanArray` to namespace
- [`d7798af`](https://github.com/stdlib-js/stdlib/commit/d7798af1c843b45d0bbaddadedf7d2961a1b3f57) - add `isNonNegativeFinite` to namespace
- [`2370b7a`](https://github.com/stdlib-js/stdlib/commit/2370b7a641a0d6c4029e2127d6fd2235458b19e3) - update REPL namespace [(##1352)](#1352)
Expand Down Expand Up @@ -107,6 +108,7 @@ A total of 4 issues were closed in this release:

##### Features

- [`89026af`](https://github.com/stdlib-js/stdlib/commit/89026afb85fbfa45556d4921686c62092f4fe8b8) - add `aput` to namespace
- [`0f9acd1`](https://github.com/stdlib-js/stdlib/commit/0f9acd17de012dfe755c98b602d6bb3dbe1e8117) - add `BooleanArray` to namespace
- [`d7798af`](https://github.com/stdlib-js/stdlib/commit/d7798af1c843b45d0bbaddadedf7d2961a1b3f57) - add `isNonNegativeFinite` to namespace
- [`2370b7a`](https://github.com/stdlib-js/stdlib/commit/2370b7a641a0d6c4029e2127d6fd2235458b19e3) - update REPL namespace [(##1352)](#1352)
Expand Down Expand Up @@ -257,6 +259,8 @@ A total of 9 people contributed to this release. Thank you to the following cont

<details>

- [`e9f214c`](https://github.com/stdlib-js/stdlib/commit/e9f214cdceba326caa8a129f5da941db6fe5ba08) - **docs:** update REPL docs _(by Athan Reines)_
- [`89026af`](https://github.com/stdlib-js/stdlib/commit/89026afb85fbfa45556d4921686c62092f4fe8b8) - **feat:** add `aput` to namespace _(by Athan Reines)_
- [`e190a54`](https://github.com/stdlib-js/stdlib/commit/e190a548efc5748792be5e3af09b7d2bf8dd987e) - **docs:** update REPL namespace documentation [(#2395)](https://github.com/stdlib-js/stdlib/pull/2395) _(by stdlib-bot, Athan Reines)_
- [`aae2b85`](https://github.com/stdlib-js/stdlib/commit/aae2b854ea853853efa6504c6953a8c5aa703128) - **docs:** update REPL namespace documentation [(#2386)](https://github.com/stdlib-js/stdlib/pull/2386) _(by stdlib-bot, Athan Reines)_
- [`1e37af3`](https://github.com/stdlib-js/stdlib/commit/1e37af3451db8f67aa91f5e34f33a728526025a9) - **docs:** update REPL namespace documentation [(#2382)](https://github.com/stdlib-js/stdlib/pull/2382) _(by stdlib-bot, Athan Reines)_
Expand Down
3 changes: 2 additions & 1 deletion code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ aoneTo,"var arr = aoneTo( 2 )\narr = aoneTo( 2, 'float32' )\n"
aoneToLike,"var arr = aoneToLike( [ 0, 0 ] )\narr = aoneToLike( [ 0, 0 ], 'float32' )\n"
APERY,"APERY\n"
append,"var arr = [ 1.0, 2.0, 3.0, 4.0, 5.0 ];\narr = append( arr, [ 6.0, 7.0 ] )\narr = new Float64Array( [ 1.0, 2.0 ] );\narr = append( arr, [ 3.0, 4.0 ] )\narr = { 'length': 0 };\narr = append( arr, [ 1.0, 2.0 ] )\n"
aput,"var x = [ 1, 2, 3, 4 ];\nvar out = aput( x, [ 1, 3 ], [ 20, 40 ] )\nvar bool = ( out === x )\n"
ARCH,"ARCH\n"
argumentFunction,"var argn = argumentFunction( 1 );\nvar v = argn( 3.14, -3.14, 0.0 )\nv = argn( -1.0, -0.0, 1.0 )\nv = argn( 'beep', 'boop', 'bop' )\nv = argn( 'beep' )\n"
ARGV,"var execPath = ARGV[ 0 ]\n"
Expand Down Expand Up @@ -2751,7 +2752,7 @@ dayOfQuarter,"var day = dayOfQuarter()\nday = dayOfQuarter( new Date() )\nday =
dayOfYear,"var day = dayOfYear()\nday = dayOfYear( new Date() )\nday = dayOfYear( 12, 31, 2016 )\nday = dayOfYear( 'dec', 31, 2016 )\nday = dayOfYear( 'december', 31, 2016 )\n"
daysInMonth,"var num = daysInMonth()\nnum = daysInMonth( 2 )\nnum = daysInMonth( 2, 2016 )\nnum = daysInMonth( 2, 2017 )\nnum = daysInMonth( 'feb', 2016 )\nnum = daysInMonth( 'february', 2016 )\n"
daysInYear,"var num = daysInYear()\nnum = daysInYear( 2016 )\nnum = daysInYear( 2017 )\n"
ddot,"var x = array( new Float64Array( [ 4.0, 2.0, -3.0, 5.0, -1.0 ] ) );\nvar y = array( new Float64Array( [ 2.0, 6.0, -1.0, -4.0, 8.0 ] ) );\nddot( x, y )\n"
ddot,"var xbuf = new Float64Array( [ 4.0, 2.0, -3.0, 5.0, -1.0 ] );\nvar x = array( xbuf );\nvar ybuf = new Float64Array( [ 2.0, 6.0, -1.0, -4.0, 8.0 ] );\nvar y = array( ybuf );\nddot( x, y )\n"
debugSinkStream,"var s = debugSinkStream( { 'name': 'foo' } );\ns.write( 'a' );\ns.write( 'b' );\ns.write( 'c' );\ns.end();\n"
debugSinkStream.factory,"var opts = { 'objectMode': true, 'highWaterMark': 64 };\nvar createStream = debugSinkStream.factory( opts );\n"
debugSinkStream.objectMode,"var s = debugSinkStream.objectMode( { 'name': 'foo' } );\ns.write( { 'value': 'a' } );\ns.write( { 'value': 'b' } );\ns.write( { 'value': 'c' } );\ns.end();\n"
Expand Down
2 changes: 1 addition & 1 deletion code-blocks/data/data.json

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions help/data/data.csv

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion help/data/data.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ aoneTo,"\naoneTo( n:integer[, dtype:string] )\n Generates a linearly spaced n
aoneToLike,"\naoneToLike( x:TypedArray|Array[, dtype:string] )\n Generates a linearly spaced numeric array whose elements increment by 1\n starting from one and having the same length and data type as a provided\n input array.\n"
APERY,"\nAPERY\n Apéry's constant.\n"
append,"\nappend( collection1:Array|TypedArray|Object, \n collection2:Array|TypedArray|Object )\n Adds the elements of one collection to the end of another collection.\n"
aput,"\naput( x:ArrayLikeObject, indices:ArrayLikeObject<integer>, \n values:ArrayLikeObject[, options:Object] )\n Replaces specified elements of an array with provided values.\n"
ARCH,"\nARCH\n Operating system CPU architecture for which the JavaScript runtime binary\n was compiled.\n"
argumentFunction,"\nargumentFunction( idx:integer )\n Returns a function which always returns a specified argument.\n"
ARGV,"\nARGV\n An array containing command-line arguments passed when launching the calling\n process.\n"
Expand Down
2 changes: 1 addition & 1 deletion info/data/data.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ aoneTo,"aoneTo( n[, dtype] )"
aoneToLike,"aoneToLike( x[, dtype] )"
APERY,"APERY"
append,"append( collection1, collection2 )"
aput,"aput( x, indices, values[, options] )"
ARCH,"ARCH"
argumentFunction,"argumentFunction( idx )"
ARGV,"ARGV"
Expand Down
2 changes: 1 addition & 1 deletion signature/data/data.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions typed-signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ aoneTo,"aoneTo( n:integer[, dtype:string] )"
aoneToLike,"aoneToLike( x:TypedArray|Array[, dtype:string] )"
APERY,"APERY"
append,"append( collection1:Array|TypedArray|Object, collection2:Array|TypedArray|Object )"
aput,"aput( x:ArrayLikeObject, indices:ArrayLikeObject<integer>, values:ArrayLikeObject[, options:Object] )"
ARCH,"ARCH"
argumentFunction,"argumentFunction( idx:integer )"
ARGV,"ARGV"
Expand Down
2 changes: 1 addition & 1 deletion typed-signature/data/data.json

Large diffs are not rendered by default.

0 comments on commit 7e164ae

Please sign in to comment.