You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Uint64.from,"\nUint64.from( words:ArrayLikeObject )\n Creates a new unsigned 64-bit integer from an array-like object containing a\n high and low word.\n"
5829
+
Uint64.of,"\nUint64.of( high:integer, low:integer )\n Creates a new unsigned 64-bit integer from a high and low word.\n"
5830
+
Uint64.BYTES_PER_ELEMENT,"\nUint64.BYTES_PER_ELEMENT\n Size (in bytes) of the underlying value.\n"
5831
+
Uint64.prototype.BYTES_PER_ELEMENT,"\nUint64.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of the underlying value.\n"
5832
+
Uint64.prototype.byteLength,"\nUint64.prototype.byteLength\n Size (in bytes) of the underlying value.\n"
5833
+
Uint64.prototype.hi,"\nUint64.prototype.hi\n Returns the high 32-bit word of an unsigned 64-bit integer.\n"
5834
+
Uint64.prototype.lo,"\nUint64.prototype.lo\n Returns the low 32-bit word of an unsigned 64-bit integer.\n"
5826
5835
umask,"\numask( [mask:integer|string,] [options:Object] )\n Returns the current process mask, if not provided a mask; otherwise, sets\n the process mask and returns the previous mask.\n"
5827
5836
uncapitalize,"\nuncapitalize( str:string )\n Lowercases the first character of a string.\n"
5828
5837
uncapitalizeKeys,"\nuncapitalizeKeys( obj:Object )\n Converts the first letter of each object key to lowercase.\n"
@@ -5853,8 +5862,8 @@ US_STATES_NAMES,"\nUS_STATES_NAMES()\n Returns a list of US state names in al
5853
5862
US_STATES_NAMES_CAPITALS,"\nUS_STATES_NAMES_CAPITALS()\n Returns an object mapping US state names to state capitals.\n"
5854
5863
utf16ToUTF8Array,"\nutf16ToUTF8Array( str:string )\n Converts a UTF-16 encoded string to an array of integers using UTF-8\n encoding.\n"
5855
5864
vartest,"\nvartest( x:Array<number>, y:Array<number>[, options:Object] )\n Computes a two-sample F-test for equal variances.\n"
5856
-
vector,"\nvector( [dtype:string|DataType][, options:Object] )\n Returns a one-dimensional ndarray.\n\nvector( length:integer[, dtype:string|DataType][, options:Object] )\n Returns a one-dimensional ndarray having a specified length.\n\nvector( obj:Object[, dtype:string|DataType][, options:Object] )\n Creates a one-dimensional ndarray from an array-like object or iterable.\n\nvector( buffer:ArrayBuffer[, byteOffset:integer[, length:integer]][, \n dtype:string|DataType][, options:Object] )\n Returns a one-dimensional ndarray view of an ArrayBuffer.\n"
5857
-
vector.factory,"\nvector.factory( dtype:string|DataType[, options:Object] )\n Returns a function for creating a one-dimensional ndarray.\n"
5865
+
vector,"\nvector( [dtype:string][, options:Object] )\n Returns a one-dimensional ndarray.\n\nvector( length:integer[, dtype:string][, options:Object] )\n Returns a one-dimensional ndarray having a specified length.\n\nvector( obj:Object[, dtype:string][, options:Object] )\n Creates a one-dimensional ndarray from an array-like object or iterable.\n\nvector( buffer:ArrayBuffer[, byteOffset:integer[, length:integer]][, \n dtype:string][, options:Object] )\n Returns a one-dimensional ndarray view of an ArrayBuffer.\n"
5866
+
vector.factory,"\nvector.factory( dtype:string[, options:Object] )\n Returns a function for creating a one-dimensional ndarray.\n"
5858
5867
waterfall,"\nwaterfall( fcns:Array<Function>, clbk:Function[, thisArg:any] )\n Executes functions in series, passing the results of one function as\n arguments to the next function.\n"
5859
5868
waterfall.factory,"\nwaterfall.factory( fcns:Array<Function>, clbk:Function[, thisArg:any] )\n Returns a reusable waterfall function.\n"
0 commit comments