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
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/help/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ arrayview2iteratorRight,"\narrayview2iteratorRight( src[, begin[, end]][, mapFcn
aslice,"\naslice( x[, start[, end]] )\n Returns a shallow copy of a portion of an array.\n\n If provided an array-like object having a `slice` method, the function\n defers execution to that method and assumes that the method has the\n following signature:\n\n x.slice( start, end )\n\n If provided an array-like object without a `slice` method, the function\n copies input array elements to a new generic array.\n\n Parameters\n ----------\n x: ArrayLikeObject\n Input array.\n\n start: integer (optional)\n Starting index (inclusive). Default: 0.\n\n end: integer (optional)\n Ending index (exclusive). Default: x.length.\n\n Returns\n -------\n out: Array|TypedArray\n Output array.\n\n Examples\n --------\n > var out = aslice( [ 1, 2, 3, 4 ] )\n [ 1, 2, 3, 4 ]\n > out = aslice( [ 1, 2, 3, 4 ], 1 )\n [ 2, 3, 4 ]\n > out = aslice( [ 1, 2, 3, 4 ], 1, 3 )\n [ 2, 3 ]\n\n See Also\n --------\n atake\n"
AsyncIteratorSymbol,"\nAsyncIteratorSymbol\n Async iterator symbol.\n\n This symbol specifies the default async iterator for an object.\n\n The symbol is only supported in ES2018+ environments. For non-supporting\n environments, the value is `null`.\n\n Examples\n --------\n > var s = AsyncIteratorSymbol\n\n See Also\n --------\n Symbol, IteratorSymbol\n"
atake,"\natake( x, indices[, options] )\n Takes elements from an array.\n\n If `indices` is an empty array, the function returns an empty array.\n\n Parameters\n ----------\n x: Array|TypedArray|Object\n Input array.\n\n indices: ArrayLikeObject<integer>\n List of element indices.\n\n options: Object (optional)\n Function options.\n\n options.mode: string (optional)\n Specifies how to handle an index outside the interval [0, max], where\n `max` is the maximum possible array index. If equal to 'throw', the\n function throws an error. If equal to 'normalize', the function throws\n an error if provided an out-of-bounds normalized index. If equal to\n 'wrap', the function wraps around an index using modulo arithmetic. If\n equal to 'clamp', the function sets an index to either 0 (minimum index)\n or the maximum index. Default: 'normalize'.\n\n Returns\n -------\n out: Array|TypedArray\n Output array.\n\n Examples\n --------\n > var x = [ 1, 2, 3, 4 ];\n > var y = atake( x, [ 1, 3 ] )\n [ 2, 4 ]\n\n See Also\n --------\n aput, aslice\n"
azeros,"\nazeros( length[, dtype] )\n Returns a zero-filled array having a specified length.\n\n The function supports the following data types:\n\n - float64: double-precision floating-point numbers (IEEE 754).\n - float32: single-precision floating-point numbers (IEEE 754).\n - complex128: double-precision complex floating-point numbers.\n - complex64: single-precision complex floating-point numbers.\n - int32: 32-bit two's complement signed integers.\n - uint32: 32-bit unsigned integers.\n - int16: 16-bit two's complement signed integers.\n - uint16: 16-bit unsigned integers.\n - int8: 8-bit two's complement signed integers.\n - uint8: 8-bit unsigned integers.\n - uint8c: 8-bit unsigned integers clamped to 0-255.\n - generic: generic JavaScript values.\n\n The default array data type is `float64`.\n\n Parameters\n ----------\n length: integer\n Array length.\n\n dtype: string (optional)\n Data type. Default: 'float64'.\n\n Returns\n -------\n out: TypedArray|Array\n Output array.\n\n Examples\n --------\n > var arr = azeros( 2 )\n <Float64Array>[ 0.0, 0.0 ]\n > arr = azeros( 2, 'float32' )\n <Float32Array>[ 0.0, 0.0 ]\n\n See Also\n --------\n aempty, afull, anans, aones, azerosLike, ndzeros\n"
azeros,"\nazeros( length[, dtype] )\n Returns a zero-filled array having a specified length.\n\n The function supports the following data types:\n\n - float64: double-precision floating-point numbers (IEEE 754).\n - float32: single-precision floating-point numbers (IEEE 754).\n - float16: half-precision floating-point numbers (IEEE 754).\n - complex128: double-precision complex floating-point numbers.\n - complex64: single-precision complex floating-point numbers.\n - int32: 32-bit two's complement signed integers.\n - uint32: 32-bit unsigned integers.\n - int16: 16-bit two's complement signed integers.\n - uint16: 16-bit unsigned integers.\n - int8: 8-bit two's complement signed integers.\n - uint8: 8-bit unsigned integers.\n - uint8c: 8-bit unsigned integers clamped to 0-255.\n - generic: generic JavaScript values.\n\n The default array data type is `float64`.\n\n Parameters\n ----------\n length: integer\n Array length.\n\n dtype: string (optional)\n Data type. Default: 'float64'.\n\n Returns\n -------\n out: TypedArray|Array\n Output array.\n\n Examples\n --------\n > var arr = azeros( 2 )\n <Float64Array>[ 0.0, 0.0 ]\n > arr = azeros( 2, 'float32' )\n <Float32Array>[ 0.0, 0.0 ]\n\n See Also\n --------\n aempty, afull, anans, aones, azerosLike, ndzeros\n"
azerosLike,"\nazerosLike( x[, dtype] )\n Returns a zero-filled array having the same length and data type as a\n provided input array.\n\n The function supports the following data types:\n\n - float64: double-precision floating-point numbers (IEEE 754).\n - float32: single-precision floating-point numbers (IEEE 754).\n - complex128: double-precision complex floating-point numbers.\n - complex64: single-precision complex floating-point numbers.\n - int32: 32-bit two's complement signed integers.\n - uint32: 32-bit unsigned integers.\n - int16: 16-bit two's complement signed integers.\n - uint16: 16-bit unsigned integers.\n - int8: 8-bit two's complement signed integers.\n - uint8: 8-bit unsigned integers.\n - uint8c: 8-bit unsigned integers clamped to 0-255.\n - generic: generic JavaScript values.\n\n Parameters\n ----------\n x: TypedArray|Array\n Input array.\n\n dtype: string (optional)\n Data type. If not provided, the output array data type is inferred from\n the input array.\n\n Returns\n -------\n out: TypedArray|Array\n Output array.\n\n Examples\n --------\n > var x = new Float64Array( 2 );\n > var y = azerosLike( x )\n <Float64Array>[ 0.0, 0.0 ]\n > y = azerosLike( x, 'float32' )\n <Float32Array>[ 0.0, 0.0 ]\n\n See Also\n --------\n aemptyLike, afullLike, anansLike, aonesLike, azeros, ndzerosLike\n"
azeroTo,"\nazeroTo( n[, dtype] )\n Generates a linearly spaced numeric array whose elements increment by 1\n starting from zero.\n\n The function supports the following data types:\n\n - float64: double-precision floating-point numbers (IEEE 754).\n - float32: single-precision floating-point numbers (IEEE 754).\n - float16: half-precision floating-point numbers (IEEE 754).\n - complex128: double-precision complex floating-point numbers.\n - complex64: single-precision complex floating-point numbers.\n - int32: 32-bit two's complement signed integers.\n - uint32: 32-bit unsigned integers.\n - int16: 16-bit two's complement signed integers.\n - uint16: 16-bit unsigned integers.\n - int8: 8-bit two's complement signed integers.\n - uint8: 8-bit unsigned integers.\n - uint8c: 8-bit unsigned integers clamped to 0-255.\n - generic: generic JavaScript values.\n\n The default array data type is `float64`.\n\n If `n` is equal to zero, the function returns an empty array.\n\n Parameters\n ----------\n n: integer\n Number of elements.\n\n dtype: string (optional)\n Data type. Default: 'float64'.\n\n Returns\n -------\n out: TypedArray|Array\n Output array.\n\n Examples\n --------\n > var arr = azeroTo( 2 )\n <Float64Array>[ 0.0, 1.0 ]\n > arr = azeroTo( 2, 'float32' )\n <Float32Array>[ 0.0, 1.0 ]\n\n See Also\n --------\n aempty, afull, aoneTo, azeroToLike, azeros\n"
azeroToLike,"\nazeroToLike( x[, dtype] )\n Generates a linearly spaced numeric array whose elements increment by 1\n starting from zero and having the same length and data type as a provided\n input array.\n\n The function supports the following data types:\n\n - float64: double-precision floating-point numbers (IEEE 754).\n - float32: single-precision floating-point numbers (IEEE 754).\n - complex128: double-precision complex floating-point numbers.\n - complex64: single-precision complex floating-point numbers.\n - int32: 32-bit two's complement signed integers.\n - uint32: 32-bit unsigned integers.\n - int16: 16-bit two's complement signed integers.\n - uint16: 16-bit unsigned integers.\n - int8: 8-bit two's complement signed integers.\n - uint8: 8-bit unsigned integers.\n - uint8c: 8-bit unsigned integers clamped to 0-255.\n - generic: generic JavaScript values.\n\n Parameters\n ----------\n x: TypedArray|Array\n Input array.\n\n dtype: string (optional)\n Data type. If not provided, the output array data type is inferred from\n the input array.\n\n Returns\n -------\n out: TypedArray|Array\n Output array.\n\n Examples\n --------\n > var arr = azeroToLike( [ 0, 0 ] )\n [ 0, 1 ]\n > arr = azeroToLike( [ 0, 0 ], 'float32' )\n <Float32Array>[ 0.0, 1.0 ]\n\n See Also\n --------\n aemptyLike, afullLike, anansLike, aoneToLike, aonesLike, azeroTo, azerosLike\n"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/help/data/data.json

Large diffs are not rendered by default.