Skip to content

Commit f03ad05

Browse files
Planeshifterstdlib-bot
authored andcommitted
docs: update REPL namespace documentation
Signed-off-by: stdlib-bot <[email protected]>
1 parent 950f099 commit f03ad05

File tree

10 files changed

+88
-8
lines changed

10 files changed

+88
-8
lines changed

lib/node_modules/@stdlib/repl/code-blocks/data/data.csv

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4163,6 +4163,22 @@ ndarrayCastingModes,"var out = ndarrayCastingModes()\n"
41634163
ndarrayDataBuffer,"var opts = { 'dtype': 'float64' };\nvar out = ndarrayDataBuffer( ndzeros( [ 3, 3, 3 ], opts ) )\n"
41644164
ndarrayDataType,"var opts = { 'dtype': 'float64' };\nvar dt = ndarrayDataType( ndzeros( [ 3, 3, 3 ], opts ) )\n"
41654165
ndarrayDataTypes,"var out = ndarrayDataTypes()\nout = ndarrayDataTypes( 'floating_point' )\nout = ndarrayDataTypes( 'floating_point_and_generic' )\n"
4166+
ndarrayDataTypes.binary,"var dt = ndarrayDataTypes.binary\n"
4167+
ndarrayDataTypes.boolean,"var dt = ndarrayDataTypes.boolean\n"
4168+
ndarrayDataTypes.complex32,"var dt = ndarrayDataTypes.complex32\n"
4169+
ndarrayDataTypes.complex64,"var dt = ndarrayDataTypes.complex64\n"
4170+
ndarrayDataTypes.complex128,"var dt = ndarrayDataTypes.complex128\n"
4171+
ndarrayDataTypes.float16,"var dt = ndarrayDataTypes.float16\n"
4172+
ndarrayDataTypes.float32,"var dt = ndarrayDataTypes.float32\n"
4173+
ndarrayDataTypes.float64,"var dt = ndarrayDataTypes.float64\n"
4174+
ndarrayDataTypes.generic,"var dt = ndarrayDataTypes.generic\n"
4175+
ndarrayDataTypes.int8,"var dt = ndarrayDataTypes.int8\n"
4176+
ndarrayDataTypes.int16,"var dt = ndarrayDataTypes.int16\n"
4177+
ndarrayDataTypes.int32,"var dt = ndarrayDataTypes.int32\n"
4178+
ndarrayDataTypes.uint8,"var dt = ndarrayDataTypes.uint8\n"
4179+
ndarrayDataTypes.uint8c,"var dt = ndarrayDataTypes.uint8c\n"
4180+
ndarrayDataTypes.uint16,"var dt = ndarrayDataTypes.uint16\n"
4181+
ndarrayDataTypes.uint32,"var dt = ndarrayDataTypes.uint32\n"
41664182
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"
41674183
ndarrayFlag,"var out = ndarrayFlag( ndzeros( [ 3, 3, 3 ] ), 'READONLY' )\n"
41684184
ndarrayFlags,"var out = ndarrayFlags( ndzeros( [ 3, 3, 3 ] ) )\n"

lib/node_modules/@stdlib/repl/code-blocks/data/data.json

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

lib/node_modules/@stdlib/repl/help/data/data.csv

Lines changed: 19 additions & 3 deletions
Large diffs are not rendered by default.

lib/node_modules/@stdlib/repl/help/data/data.json

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

lib/node_modules/@stdlib/repl/info/data/data.csv

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4164,6 +4164,22 @@ ndarrayCastingModes,"\nndarrayCastingModes()\n Returns a list of ndarray cast
41644164
ndarrayDataBuffer,"\nndarrayDataBuffer( x:ndarray )\n Returns the underlying data buffer of a provided ndarray.\n"
41654165
ndarrayDataType,"\nndarrayDataType( x:ndarray )\n Returns the data type of a provided ndarray.\n"
41664166
ndarrayDataTypes,"\nndarrayDataTypes( [kind:string] )\n Returns a list of ndarray data types.\n"
4167+
ndarrayDataTypes.binary,"\nndarrayDataTypes.binary\n Read-only property returning a data type instance representing a binary data\n type.\n"
4168+
ndarrayDataTypes.boolean,"\nndarrayDataTypes.boolean\n Read-only property returning a data type instance representing a boolean\n data type.\n"
4169+
ndarrayDataTypes.complex32,"\nndarrayDataTypes.complex32\n Read-only property returning a data type instance representing a half-\n precision complex floating-point number data type.\n"
4170+
ndarrayDataTypes.complex64,"\nndarrayDataTypes.complex64\n Read-only property returning a data type instance representing a single-\n precision complex floating-point number data type.\n"
4171+
ndarrayDataTypes.complex128,"\nndarrayDataTypes.complex128\n Read-only property returning a data type instance representing a double-\n precision complex floating-point number data type.\n"
4172+
ndarrayDataTypes.float16,"\nndarrayDataTypes.float16\n Read-only property returning a data type instance representing a half-\n precision real-valued floating-point number data type.\n"
4173+
ndarrayDataTypes.float32,"\nndarrayDataTypes.float32\n Read-only property returning a data type instance representing a single-\n precision real-valued floating-point number data type.\n"
4174+
ndarrayDataTypes.float64,"\nndarrayDataTypes.float64\n Read-only property returning a data type instance representing a double-\n precision real-valued floating-point number data type.\n"
4175+
ndarrayDataTypes.generic,"\nndarrayDataTypes.generic\n Read-only property returning a data type instance representing a \"generic\"\n data type.\n"
4176+
ndarrayDataTypes.int8,"\nndarrayDataTypes.int8\n Read-only property returning a data type instance representing a signed\n 8-bit integer data type.\n"
4177+
ndarrayDataTypes.int16,"\nndarrayDataTypes.int16\n Read-only property returning a data type instance representing a signed\n 16-bit integer data type.\n"
4178+
ndarrayDataTypes.int32,"\nndarrayDataTypes.int32\n Read-only property returning a data type instance representing a signed\n 32-bit integer data type.\n"
4179+
ndarrayDataTypes.uint8,"\nndarrayDataTypes.uint8\n Read-only property returning a data type instance representing an unsigned\n 8-bit integer data type.\n"
4180+
ndarrayDataTypes.uint8c,"\nndarrayDataTypes.uint8c\n Read-only property returning a data type instance representing an unsigned\n clamped 8-bit integer data type.\n"
4181+
ndarrayDataTypes.uint16,"\nndarrayDataTypes.uint16\n Read-only property returning a data type instance representing an unsigned\n 16-bit integer data type.\n"
4182+
ndarrayDataTypes.uint32,"\nndarrayDataTypes.uint32\n Read-only property returning a data type instance representing an unsigned\n 32-bit integer data type.\n"
41674183
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"
41684184
ndarrayFlag,"\nndarrayFlag( x:ndarray, name:string|symbol )\n Returns a specified flag for a provided ndarray.\n"
41694185
ndarrayFlags,"\nndarrayFlags( x:ndarray )\n Returns the flags of a provided ndarray.\n"

lib/node_modules/@stdlib/repl/info/data/data.json

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

lib/node_modules/@stdlib/repl/signature/data/data.csv

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4215,6 +4215,22 @@ ndarrayCastingModes,"ndarrayCastingModes()"
42154215
ndarrayDataBuffer,"ndarrayDataBuffer( x )"
42164216
ndarrayDataType,"ndarrayDataType( x )"
42174217
ndarrayDataTypes,"ndarrayDataTypes( [kind] )"
4218+
ndarrayDataTypes.binary,"ndarrayDataTypes.binary"
4219+
ndarrayDataTypes.boolean,"ndarrayDataTypes.boolean"
4220+
ndarrayDataTypes.complex32,"ndarrayDataTypes.complex32"
4221+
ndarrayDataTypes.complex64,"ndarrayDataTypes.complex64"
4222+
ndarrayDataTypes.complex128,"ndarrayDataTypes.complex128"
4223+
ndarrayDataTypes.float16,"ndarrayDataTypes.float16"
4224+
ndarrayDataTypes.float32,"ndarrayDataTypes.float32"
4225+
ndarrayDataTypes.float64,"ndarrayDataTypes.float64"
4226+
ndarrayDataTypes.generic,"ndarrayDataTypes.generic"
4227+
ndarrayDataTypes.int8,"ndarrayDataTypes.int8"
4228+
ndarrayDataTypes.int16,"ndarrayDataTypes.int16"
4229+
ndarrayDataTypes.int32,"ndarrayDataTypes.int32"
4230+
ndarrayDataTypes.uint8,"ndarrayDataTypes.uint8"
4231+
ndarrayDataTypes.uint8c,"ndarrayDataTypes.uint8c"
4232+
ndarrayDataTypes.uint16,"ndarrayDataTypes.uint16"
4233+
ndarrayDataTypes.uint32,"ndarrayDataTypes.uint32"
42184234
ndarrayDispatch,"ndarrayDispatch( fcns, types, data, nargs, nin, nout )"
42194235
ndarrayFlag,"ndarrayFlag( x, name )"
42204236
ndarrayFlags,"ndarrayFlags( x )"

lib/node_modules/@stdlib/repl/signature/data/data.json

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

lib/node_modules/@stdlib/repl/typed-signature/data/data.csv

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4215,6 +4215,22 @@ ndarrayCastingModes,"ndarrayCastingModes()"
42154215
ndarrayDataBuffer,"ndarrayDataBuffer( x:ndarray )"
42164216
ndarrayDataType,"ndarrayDataType( x:ndarray )"
42174217
ndarrayDataTypes,"ndarrayDataTypes( [kind:string] )"
4218+
ndarrayDataTypes.binary,"ndarrayDataTypes.binary"
4219+
ndarrayDataTypes.boolean,"ndarrayDataTypes.boolean"
4220+
ndarrayDataTypes.complex32,"ndarrayDataTypes.complex32"
4221+
ndarrayDataTypes.complex64,"ndarrayDataTypes.complex64"
4222+
ndarrayDataTypes.complex128,"ndarrayDataTypes.complex128"
4223+
ndarrayDataTypes.float16,"ndarrayDataTypes.float16"
4224+
ndarrayDataTypes.float32,"ndarrayDataTypes.float32"
4225+
ndarrayDataTypes.float64,"ndarrayDataTypes.float64"
4226+
ndarrayDataTypes.generic,"ndarrayDataTypes.generic"
4227+
ndarrayDataTypes.int8,"ndarrayDataTypes.int8"
4228+
ndarrayDataTypes.int16,"ndarrayDataTypes.int16"
4229+
ndarrayDataTypes.int32,"ndarrayDataTypes.int32"
4230+
ndarrayDataTypes.uint8,"ndarrayDataTypes.uint8"
4231+
ndarrayDataTypes.uint8c,"ndarrayDataTypes.uint8c"
4232+
ndarrayDataTypes.uint16,"ndarrayDataTypes.uint16"
4233+
ndarrayDataTypes.uint32,"ndarrayDataTypes.uint32"
42184234
ndarrayDispatch,"ndarrayDispatch( fcns:Function|ArrayLikeObject<Function>, types:ArrayLikeObject, data:ArrayLikeObject|null, nargs:integer, nin:integer, nout:integer )"
42194235
ndarrayFlag,"ndarrayFlag( x:ndarray, name:string|symbol )"
42204236
ndarrayFlags,"ndarrayFlags( x:ndarray )"

lib/node_modules/@stdlib/repl/typed-signature/data/data.json

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

0 commit comments

Comments
 (0)