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 Jan 1, 2024
1 parent 6ad11e9 commit a8544e7
Show file tree
Hide file tree
Showing 13 changed files with 20 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1308,7 +1308,7 @@ See [LICENSE][stdlib-license].

## Copyright

Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].

</section>

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 @@ -42,7 +42,7 @@ ArrayBuffer.prototype.slice,"var b1 = new ArrayBuffer( 10 );\nvar b2 = b1.slice(
arraybuffer2buffer,"var ab = new ArrayBuffer( 10 )\nvar buf = arraybuffer2buffer( ab )\nvar len = buf.length\nbuf = arraybuffer2buffer( ab, 2, 6 )\nlen = buf.length\n"
arrayCtors,"var ctor = arrayCtors( 'float64' )\nctor = arrayCtors( 'float' )\n"
arrayDataType,"var arr = new Float64Array( 10 );\nvar dt = arrayDataType( arr )\ndt = arrayDataType( 'beep' )\n"
arrayDataTypes,"var out = arrayDataTypes()\n"
arrayDataTypes,"var out = arrayDataTypes()\nout = arrayDataTypes( 'floating_point' )\n"
arrayMinDataType,"var dt = arrayMinDataType( 3.141592653589793 )\ndt = arrayMinDataType( 3 )\ndt = arrayMinDataType( -3 )\ndt = arrayMinDataType( '-3' )\n"
arrayNextDataType,"var out = arrayNextDataType( 'float32' )\n"
arrayPromotionRules,"var out = arrayPromotionRules( 'float32', 'int32' )\n"
Expand Down Expand Up @@ -3693,6 +3693,7 @@ ndarrayDataBuffer,"var opts = { 'dtype': 'float64' };\nvar out = ndarrayDataBuff
ndarrayDataType,"var opts = { 'dtype': 'float64' };\nvar dt = ndarrayDataType( ndzeros( [ 3, 3, 3 ], opts ) )\n"
ndarrayDataTypes,"var out = ndarrayDataTypes()\nout = ndarrayDataTypes( 'floating_point' )\n"
ndarrayDispatch,"var t = [ 'float64', 'float64', 'float32', 'float32' ];\nvar d = [ base.abs, base.absf ];\nvar f = ndarrayDispatch( base.ndarrayUnary, t, d, 2, 1, 1 );\nvar xbuf = new Float64Array( [ -1.0, -2.0, -3.0, -4.0 ] );\nvar x = ndarray( 'float64', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );\nvar ybuf = new Float64Array( [ 0.0, 0.0, 0.0, 0.0 ] );\nvar y = ndarray( 'float64', ybuf, [ 4 ], [ 1 ], 0, 'row-major' );\nf( x, y );\nybuf\n"
ndarrayFlag,"var out = ndarrayFlag( ndzeros( [ 3, 3, 3 ] ), 'READONLY' )\n"
ndarrayFlags,"var out = ndarrayFlags( ndzeros( [ 3, 3, 3 ] ) )\n"
ndarrayIndexModes,"var out = ndarrayIndexModes()\n"
ndarrayMinDataType,"var dt = ndarrayMinDataType( 3.141592653589793 )\ndt = ndarrayMinDataType( 3 )\ndt = ndarrayMinDataType( -3 )\ndt = ndarrayMinDataType( '-3' )\n"
Expand Down
2 changes: 1 addition & 1 deletion code-blocks/data/data.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/index.js.map

Large diffs are not rendered by default.

5 changes: 3 additions & 2 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.

3 changes: 2 additions & 1 deletion info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ ArrayBuffer.prototype.slice,"\nArrayBuffer.prototype.slice( [start:integer[, end
arraybuffer2buffer,"\narraybuffer2buffer( buf:ArrayBuffer[, byteOffset:integer[, length:integer]] )\n Allocates a buffer from an ArrayBuffer.\n"
arrayCtors,"\narrayCtors( dtype:string )\n Returns an array constructor.\n"
arrayDataType,"\narrayDataType( array:any )\n Returns the data type of an array.\n"
arrayDataTypes,"\narrayDataTypes()\n Returns a list of array data types.\n"
arrayDataTypes,"\narrayDataTypes( [kind:string] )\n Returns a list of array data types.\n"
arrayMinDataType,"\narrayMinDataType( value:any )\n Returns the minimum array data type of the closest \"kind\" necessary for\n storing a provided scalar value.\n"
arrayNextDataType,"\narrayNextDataType( [dtype:string] )\n Returns the next larger array data type of the same kind.\n"
arrayPromotionRules,"\narrayPromotionRules( [dtype1:string, dtype2:string] )\n Returns the array data type with the smallest size and closest \"kind\" to\n which array data types can be safely cast.\n"
Expand Down Expand Up @@ -3693,6 +3693,7 @@ ndarrayDataBuffer,"\nndarrayDataBuffer( x:ndarray )\n Returns the underlying
ndarrayDataType,"\nndarrayDataType( x:ndarray )\n Returns the data type of a provided ndarray.\n"
ndarrayDataTypes,"\nndarrayDataTypes( [kind:string] )\n Returns a list of ndarray data types.\n"
ndarrayDispatch,"\nndarrayDispatch( fcns:Function|ArrayLikeObject<Function>, \n types:ArrayLikeObject, data:ArrayLikeObject|null, nargs:integer, nin:integer, \n nout:integer )\n Returns an ndarray function interface which performs multiple dispatch.\n"
ndarrayFlag,"\nndarrayFlag( x:ndarray, name:string|symbol )\n Returns a specified flag for a provided ndarray.\n"
ndarrayFlags,"\nndarrayFlags( x:ndarray )\n Returns the flags of a provided ndarray.\n"
ndarrayIndexModes,"\nndarrayIndexModes()\n Returns a list of ndarray index modes.\n"
ndarrayMinDataType,"\nndarrayMinDataType( value:any )\n Returns the minimum ndarray data type of the closest \"kind\" necessary for\n storing a provided scalar value.\n"
Expand Down
2 changes: 1 addition & 1 deletion info/data/data.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ ArrayBuffer.prototype.slice,"ArrayBuffer.prototype.slice( [start[, end]] )"
arraybuffer2buffer,"arraybuffer2buffer( buf[, byteOffset[, length]] )"
arrayCtors,"arrayCtors( dtype )"
arrayDataType,"arrayDataType( array )"
arrayDataTypes,"arrayDataTypes()"
arrayDataTypes,"arrayDataTypes( [kind] )"
arrayMinDataType,"arrayMinDataType( value )"
arrayNextDataType,"arrayNextDataType( [dtype] )"
arrayPromotionRules,"arrayPromotionRules( [dtype1, dtype2] )"
Expand Down Expand Up @@ -3730,6 +3730,7 @@ ndarrayDataBuffer,"ndarrayDataBuffer( x )"
ndarrayDataType,"ndarrayDataType( x )"
ndarrayDataTypes,"ndarrayDataTypes( [kind] )"
ndarrayDispatch,"ndarrayDispatch( fcns, types, data, nargs, nin, nout )"
ndarrayFlag,"ndarrayFlag( x, name )"
ndarrayFlags,"ndarrayFlags( x )"
ndarrayIndexModes,"ndarrayIndexModes()"
ndarrayMinDataType,"ndarrayMinDataType( value )"
Expand Down
2 changes: 1 addition & 1 deletion signature/data/data.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion typed-signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ ArrayBuffer.prototype.slice,"ArrayBuffer.prototype.slice( [start:integer[, end:i
arraybuffer2buffer,"arraybuffer2buffer( buf:ArrayBuffer[, byteOffset:integer[, length:integer]] )"
arrayCtors,"arrayCtors( dtype:string )"
arrayDataType,"arrayDataType( array:any )"
arrayDataTypes,"arrayDataTypes()"
arrayDataTypes,"arrayDataTypes( [kind:string] )"
arrayMinDataType,"arrayMinDataType( value:any )"
arrayNextDataType,"arrayNextDataType( [dtype:string] )"
arrayPromotionRules,"arrayPromotionRules( [dtype1:string, dtype2:string] )"
Expand Down Expand Up @@ -3730,6 +3730,7 @@ ndarrayDataBuffer,"ndarrayDataBuffer( x:ndarray )"
ndarrayDataType,"ndarrayDataType( x:ndarray )"
ndarrayDataTypes,"ndarrayDataTypes( [kind:string] )"
ndarrayDispatch,"ndarrayDispatch( fcns:Function|ArrayLikeObject<Function>, types:ArrayLikeObject, data:ArrayLikeObject|null, nargs:integer, nin:integer, nout:integer )"
ndarrayFlag,"ndarrayFlag( x:ndarray, name:string|symbol )"
ndarrayFlags,"ndarrayFlags( x:ndarray )"
ndarrayIndexModes,"ndarrayIndexModes()"
ndarrayMinDataType,"ndarrayMinDataType( value:any )"
Expand Down
2 changes: 1 addition & 1 deletion typed-signature/data/data.json

Large diffs are not rendered by default.

0 comments on commit a8544e7

Please sign in to comment.