Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions lib/node_modules/@stdlib/repl/code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -2784,6 +2784,18 @@ curryRight,"function add( x, y ) { return x + y; };\nvar f = curryRight( add );\
cwd,"var dir = cwd()\n"
DALE_CHALL_NEW,"var list = DALE_CHALL_NEW()\n"
datasets,"var out = datasets( 'MONTH_NAMES_EN' )\nvar opts = { 'data': 'cities' };\nout = datasets( 'MINARD_NAPOLEONS_MARCH', opts )\n"
DataType,"var dt = new DataType( 'float64' );\ndt.byteLength\n"
DataType.name,"DataType.name\n"
DataType.prototype.alignment,"var dt = new DataType( 'float64' );\ndt.alignment\n"
DataType.prototype.byteLength,"var dt = new DataType( 'float64' );\ndt.byteLength\n"
DataType.prototype.byteOrder,"var dt = new DataType( 'float64' );\ndt.byteOrder\n"
DataType.prototype.char,"var dt = new DataType( 'float64' );\ndt.char\n"
DataType.prototype.description,"var dt = new DataType( 'float64' );\ndt.description\n"
DataType.prototype.enum,"var dt = new DataType( 'float64' );\ndt.enum\n"
DataType.prototype.value,"var dt = new DataType( 'float64' );\ndt.value\n"
DataType.prototype.toJSON,"var dt = new DataType( 'float64' );\ndt.toJSON()\n"
DataType.prototype.toString,"var dt = new DataType( 'float64' );\ndt.toString()\n"
DataType.prototype.valueOf,"var dt = new DataType( 'float64' );\ndt.valueOf()\n"
DataView,"var buf = new ArrayBuffer( 5 )\nvar dv = new DataView( buf )\n"
DataView.prototype.buffer,"var buf1 = new ArrayBuffer( 5 );\nvar dv = new DataView( buf1 );\nvar buf2 = dv.buffer\nvar b = ( buf1 === buf2 )\n"
DataView.prototype.byteLength,"var buf = new ArrayBuffer( 5 );\nvar dv = new DataView( buf );\ndv.byteLength\n"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/code-blocks/data/data.json

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions lib/node_modules/@stdlib/repl/info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -2785,6 +2785,18 @@ curryRight,"\ncurryRight( fcn:Function[, arity:integer][, thisArg:any] )\n Tr
cwd,"\ncwd()\n Returns the current working directory.\n"
DALE_CHALL_NEW,"\nDALE_CHALL_NEW()\n Returns a list of familiar American-English words.\n"
datasets,"\ndatasets( name:string[, options:Object] )\n Returns a dataset.\n"
DataType,"\nDataType( value:any[, options:Object] )\n Data type constructor.\n"
DataType.name,"\nDataType.name\n Constructor name.\n"
DataType.prototype.alignment,"\nDataType.prototype.alignment\n Alignment (in bytes) for the data type.\n"
DataType.prototype.byteLength,"\nDataType.prototype.byteLength\n Size (in bytes) of the data type.\n"
DataType.prototype.byteOrder,"\nDataType.prototype.byteOrder\n Data type byte order.\n"
DataType.prototype.char,"\nDataType.prototype.char\n Single letter character abbreviation for the data type.\n"
DataType.prototype.description,"\nDataType.prototype.description\n Data type description.\n"
DataType.prototype.enum,"\nDataType.prototype.enum\n Enumeration constant for the data type.\n"
DataType.prototype.value,"\nDataType.prototype.value\n Raw (original) data type value.\n"
DataType.prototype.toJSON,"\nDataType.prototype.toJSON()\n Serializes a data type instance as a JSON object.\n"
DataType.prototype.toString,"\nDataType.prototype.toString()\n Serializes a data type instance to a string.\n"
DataType.prototype.valueOf,"\nDataType.prototype.valueOf()\n Converts a data type instance to a primitive.\n"
DataView,"\nDataView( buffer:ArrayBuffer|SharedArrayBuffer[, byteOffset:integer[, \n byteLength:integer]] )\n Returns a data view representing a provided array buffer.\n"
DataView.prototype.buffer,"\nDataView.prototype.buffer\n Read-only property which returns the underlying array buffer.\n"
DataView.prototype.byteLength,"\nDataView.prototype.byteLength\n Read-only property which returns the length (in bytes) of the view.\n"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/info/data/data.json

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions lib/node_modules/@stdlib/repl/signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -2808,6 +2808,18 @@ curryRight,"curryRight( fcn[, arity][, thisArg] )"
cwd,"cwd()"
DALE_CHALL_NEW,"DALE_CHALL_NEW()"
datasets,"datasets( name[, options] )"
DataType,"DataType( value[, options] )"
DataType.name,"DataType.name"
DataType.prototype.alignment,"DataType.prototype.alignment"
DataType.prototype.byteLength,"DataType.prototype.byteLength"
DataType.prototype.byteOrder,"DataType.prototype.byteOrder"
DataType.prototype.char,"DataType.prototype.char"
DataType.prototype.description,"DataType.prototype.description"
DataType.prototype.enum,"DataType.prototype.enum"
DataType.prototype.value,"DataType.prototype.value"
DataType.prototype.toJSON,"DataType.prototype.toJSON()"
DataType.prototype.toString,"DataType.prototype.toString()"
DataType.prototype.valueOf,"DataType.prototype.valueOf()"
DataView,"DataView( buffer[, byteOffset[, byteLength]] )"
DataView.prototype.buffer,"DataView.prototype.buffer"
DataView.prototype.byteLength,"DataView.prototype.byteLength"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/signature/data/data.json

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions lib/node_modules/@stdlib/repl/typed-signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -2808,6 +2808,18 @@ curryRight,"curryRight( fcn:Function[, arity:integer][, thisArg:any] )"
cwd,"cwd()"
DALE_CHALL_NEW,"DALE_CHALL_NEW()"
datasets,"datasets( name:string[, options:Object] )"
DataType,"DataType( value:any[, options:Object] )"
DataType.name,"DataType.name"
DataType.prototype.alignment,"DataType.prototype.alignment"
DataType.prototype.byteLength,"DataType.prototype.byteLength"
DataType.prototype.byteOrder,"DataType.prototype.byteOrder"
DataType.prototype.char,"DataType.prototype.char"
DataType.prototype.description,"DataType.prototype.description"
DataType.prototype.enum,"DataType.prototype.enum"
DataType.prototype.value,"DataType.prototype.value"
DataType.prototype.toJSON,"DataType.prototype.toJSON()"
DataType.prototype.toString,"DataType.prototype.toString()"
DataType.prototype.valueOf,"DataType.prototype.valueOf()"
DataView,"DataView( buffer:ArrayBuffer|SharedArrayBuffer[, byteOffset:integer[, byteLength:integer]] )"
DataView.prototype.buffer,"DataView.prototype.buffer"
DataView.prototype.byteLength,"DataView.prototype.byteLength"
Expand Down

Large diffs are not rendered by default.