Skip to content

Commit dc2f31d

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

File tree

8 files changed

+52
-4
lines changed

8 files changed

+52
-4
lines changed

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2784,6 +2784,18 @@ curryRight,"function add( x, y ) { return x + y; };\nvar f = curryRight( add );\
27842784
cwd,"var dir = cwd()\n"
27852785
DALE_CHALL_NEW,"var list = DALE_CHALL_NEW()\n"
27862786
datasets,"var out = datasets( 'MONTH_NAMES_EN' )\nvar opts = { 'data': 'cities' };\nout = datasets( 'MINARD_NAPOLEONS_MARCH', opts )\n"
2787+
DataType,"var dt = new DataType( 'float64' );\ndt.byteLength\n"
2788+
DataType.name,"DataType.name\n"
2789+
DataType.prototype.alignment,"var dt = new DataType( 'float64' );\ndt.alignment\n"
2790+
DataType.prototype.byteLength,"var dt = new DataType( 'float64' );\ndt.byteLength\n"
2791+
DataType.prototype.byteOrder,"var dt = new DataType( 'float64' );\ndt.byteOrder\n"
2792+
DataType.prototype.char,"var dt = new DataType( 'float64' );\ndt.char\n"
2793+
DataType.prototype.description,"var dt = new DataType( 'float64' );\ndt.description\n"
2794+
DataType.prototype.enum,"var dt = new DataType( 'float64' );\ndt.enum\n"
2795+
DataType.prototype.value,"var dt = new DataType( 'float64' );\ndt.value\n"
2796+
DataType.prototype.toJSON,"var dt = new DataType( 'float64' );\ndt.toJSON()\n"
2797+
DataType.prototype.toString,"var dt = new DataType( 'float64' );\ndt.toString()\n"
2798+
DataType.prototype.valueOf,"var dt = new DataType( 'float64' );\ndt.valueOf()\n"
27872799
DataView,"var buf = new ArrayBuffer( 5 )\nvar dv = new DataView( buf )\n"
27882800
DataView.prototype.buffer,"var buf1 = new ArrayBuffer( 5 );\nvar dv = new DataView( buf1 );\nvar buf2 = dv.buffer\nvar b = ( buf1 === buf2 )\n"
27892801
DataView.prototype.byteLength,"var buf = new ArrayBuffer( 5 );\nvar dv = new DataView( buf );\ndv.byteLength\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/info/data/data.csv

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2785,6 +2785,18 @@ curryRight,"\ncurryRight( fcn:Function[, arity:integer][, thisArg:any] )\n Tr
27852785
cwd,"\ncwd()\n Returns the current working directory.\n"
27862786
DALE_CHALL_NEW,"\nDALE_CHALL_NEW()\n Returns a list of familiar American-English words.\n"
27872787
datasets,"\ndatasets( name:string[, options:Object] )\n Returns a dataset.\n"
2788+
DataType,"\nDataType( value:any[, options:Object] )\n Data type constructor.\n"
2789+
DataType.name,"\nDataType.name\n Constructor name.\n"
2790+
DataType.prototype.alignment,"\nDataType.prototype.alignment\n Alignment (in bytes) for the data type.\n"
2791+
DataType.prototype.byteLength,"\nDataType.prototype.byteLength\n Size (in bytes) of the data type.\n"
2792+
DataType.prototype.byteOrder,"\nDataType.prototype.byteOrder\n Data type byte order.\n"
2793+
DataType.prototype.char,"\nDataType.prototype.char\n Single letter character abbreviation for the data type.\n"
2794+
DataType.prototype.description,"\nDataType.prototype.description\n Data type description.\n"
2795+
DataType.prototype.enum,"\nDataType.prototype.enum\n Enumeration constant for the data type.\n"
2796+
DataType.prototype.value,"\nDataType.prototype.value\n Raw (original) data type value.\n"
2797+
DataType.prototype.toJSON,"\nDataType.prototype.toJSON()\n Serializes a data type instance as a JSON object.\n"
2798+
DataType.prototype.toString,"\nDataType.prototype.toString()\n Serializes a data type instance to a string.\n"
2799+
DataType.prototype.valueOf,"\nDataType.prototype.valueOf()\n Converts a data type instance to a primitive.\n"
27882800
DataView,"\nDataView( buffer:ArrayBuffer|SharedArrayBuffer[, byteOffset:integer[, \n byteLength:integer]] )\n Returns a data view representing a provided array buffer.\n"
27892801
DataView.prototype.buffer,"\nDataView.prototype.buffer\n Read-only property which returns the underlying array buffer.\n"
27902802
DataView.prototype.byteLength,"\nDataView.prototype.byteLength\n Read-only property which returns the length (in bytes) of the view.\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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2808,6 +2808,18 @@ curryRight,"curryRight( fcn[, arity][, thisArg] )"
28082808
cwd,"cwd()"
28092809
DALE_CHALL_NEW,"DALE_CHALL_NEW()"
28102810
datasets,"datasets( name[, options] )"
2811+
DataType,"DataType( value[, options] )"
2812+
DataType.name,"DataType.name"
2813+
DataType.prototype.alignment,"DataType.prototype.alignment"
2814+
DataType.prototype.byteLength,"DataType.prototype.byteLength"
2815+
DataType.prototype.byteOrder,"DataType.prototype.byteOrder"
2816+
DataType.prototype.char,"DataType.prototype.char"
2817+
DataType.prototype.description,"DataType.prototype.description"
2818+
DataType.prototype.enum,"DataType.prototype.enum"
2819+
DataType.prototype.value,"DataType.prototype.value"
2820+
DataType.prototype.toJSON,"DataType.prototype.toJSON()"
2821+
DataType.prototype.toString,"DataType.prototype.toString()"
2822+
DataType.prototype.valueOf,"DataType.prototype.valueOf()"
28112823
DataView,"DataView( buffer[, byteOffset[, byteLength]] )"
28122824
DataView.prototype.buffer,"DataView.prototype.buffer"
28132825
DataView.prototype.byteLength,"DataView.prototype.byteLength"

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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2808,6 +2808,18 @@ curryRight,"curryRight( fcn:Function[, arity:integer][, thisArg:any] )"
28082808
cwd,"cwd()"
28092809
DALE_CHALL_NEW,"DALE_CHALL_NEW()"
28102810
datasets,"datasets( name:string[, options:Object] )"
2811+
DataType,"DataType( value:any[, options:Object] )"
2812+
DataType.name,"DataType.name"
2813+
DataType.prototype.alignment,"DataType.prototype.alignment"
2814+
DataType.prototype.byteLength,"DataType.prototype.byteLength"
2815+
DataType.prototype.byteOrder,"DataType.prototype.byteOrder"
2816+
DataType.prototype.char,"DataType.prototype.char"
2817+
DataType.prototype.description,"DataType.prototype.description"
2818+
DataType.prototype.enum,"DataType.prototype.enum"
2819+
DataType.prototype.value,"DataType.prototype.value"
2820+
DataType.prototype.toJSON,"DataType.prototype.toJSON()"
2821+
DataType.prototype.toString,"DataType.prototype.toString()"
2822+
DataType.prototype.valueOf,"DataType.prototype.valueOf()"
28112823
DataView,"DataView( buffer:ArrayBuffer|SharedArrayBuffer[, byteOffset:integer[, byteLength:integer]] )"
28122824
DataView.prototype.buffer,"DataView.prototype.buffer"
28132825
DataView.prototype.byteLength,"DataView.prototype.byteLength"

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)