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
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/array/README.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -161,6 +161,7 @@ Lastly, the namespace contains various other functions for dealing with arrays,
161
161
- <spanclass="signature">[`convertArraySame( x, y )`][@stdlib/array/convert-same]</span><spanclass="delimiter">: </span><spanclass="description">convert an array to the same data type as a second input array.</span>
162
162
- <spanclass="signature">[`convertArray( arr, dtype )`][@stdlib/array/convert]</span><spanclass="delimiter">: </span><spanclass="description">convert an array to an array of a different data type.</span>
163
163
- <spanclass="signature">[`DataView( buffer[, byteOffset[, byteLength]] )`][@stdlib/array/dataview]</span><spanclass="delimiter">: </span><spanclass="description">constructor which returns a data view representing a provided array buffer.</span>
- <spanclass="signature">[`arrayDataType( array )`][@stdlib/array/dtype]</span><spanclass="delimiter">: </span><spanclass="description">return the data type of an array.</span>
165
166
- <spanclass="signature">[`aemptyLike( x[, dtype] )`][@stdlib/array/empty-like]</span><spanclass="delimiter">: </span><spanclass="description">create an uninitialized array having the same length and data type as a provided array.</span>
166
167
- <spanclass="signature">[`aempty( length[, dtype] )`][@stdlib/array/empty]</span><spanclass="delimiter">: </span><spanclass="description">create an uninitialized array having a specified length.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/array/base/README.md
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,8 +51,11 @@ The namespace exports the following:
51
51
- <spanclass="signature">[`accessors( x )`][@stdlib/array/base/accessors]</span><spanclass="delimiter">: </span><spanclass="description">return element accessors for a provided array-like object.</span>
52
52
- <spanclass="signature">[`arraylike2object( x )`][@stdlib/array/base/arraylike2object]</span><spanclass="delimiter">: </span><spanclass="description">convert an array-like object to an object likely to have the same "shape".</span>
- <spanclass="signature">[`bifurcateEntriesBy( x, predicate[, thisArg] )`][@stdlib/array/base/bifurcate-entries-by]</span><spanclass="delimiter">: </span><spanclass="description">split element entries into two groups according to a predicate function.</span>
54
55
- <spanclass="signature">[`bifurcateEntries( x, filter )`][@stdlib/array/base/bifurcate-entries]</span><spanclass="delimiter">: </span><spanclass="description">split array element entries into two groups.</span>
56
+
- <spanclass="signature">[`bifurcateIndicesBy( x, predicate[, thisArg] )`][@stdlib/array/base/bifurcate-indices-by]</span><spanclass="delimiter">: </span><spanclass="description">split element indices into two groups according to a predicate function.</span>
55
57
- <spanclass="signature">[`bifurcateIndices( x, filter )`][@stdlib/array/base/bifurcate-indices]</span><spanclass="delimiter">: </span><spanclass="description">split array element indices into two groups.</span>
58
+
- <spanclass="signature">[`bifurcateValuesBy( x, predicate[, thisArg] )`][@stdlib/array/base/bifurcate-values-by]</span><spanclass="delimiter">: </span><spanclass="description">split element values into two groups according to a predicate function.</span>
56
59
- <spanclass="signature">[`bifurcateValues( x, filter )`][@stdlib/array/base/bifurcate-values]</span><spanclass="delimiter">: </span><spanclass="description">split array element values into two groups.</span>
57
60
- <spanclass="signature">[`binary2d( arrays, shape, fcn )`][@stdlib/array/base/binary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a binary callback to elements in two two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.</span>
58
61
- <spanclass="signature">[`binary3d( arrays, shape, fcn )`][@stdlib/array/base/binary3d]</span><spanclass="delimiter">: </span><spanclass="description">apply a binary callback to elements in two three-dimensional nested input arrays and assign results to elements in a three-dimensional nested output array.</span>
@@ -110,8 +113,11 @@ The namespace exports the following:
110
113
- <spanclass="signature">[`flipud5d( x )`][@stdlib/array/base/flipud5d]</span><spanclass="delimiter">: </span><spanclass="description">reverse the order of elements along the second-to-last dimension of a five-dimensional nested input array.</span>
111
114
- <spanclass="signature">[`strided2array( N, x, stride, offset )`][@stdlib/array/base/from-strided]</span><spanclass="delimiter">: </span><spanclass="description">convert a strided array to a non-strided generic array.</span>
112
115
- <spanclass="signature">[`getter( dtype )`][@stdlib/array/base/getter]</span><spanclass="delimiter">: </span><spanclass="description">return an accessor function for retrieving an element from an indexed array-like object.</span>
116
+
- <spanclass="signature">[`groupEntriesBy( x, indicator[, thisArg] )`][@stdlib/array/base/group-entries-by]</span><spanclass="delimiter">: </span><spanclass="description">group element entries according to an indicator function.</span>
113
117
- <spanclass="signature">[`groupEntries( x, groups )`][@stdlib/array/base/group-entries]</span><spanclass="delimiter">: </span><spanclass="description">group element entries as arrays associated with distinct keys.</span>
118
+
- <spanclass="signature">[`groupIndicesBy( x, indicator[, thisArg] )`][@stdlib/array/base/group-indices-by]</span><spanclass="delimiter">: </span><spanclass="description">group element indices according to an indicator function.</span>
114
119
- <spanclass="signature">[`groupIndices( x, groups )`][@stdlib/array/base/group-indices]</span><spanclass="delimiter">: </span><spanclass="description">group element indices as arrays associated with distinct keys.</span>
120
+
- <spanclass="signature">[`groupValuesBy( x, indicator[, thisArg] )`][@stdlib/array/base/group-values-by]</span><spanclass="delimiter">: </span><spanclass="description">group element values according to an indicator function.</span>
115
121
- <spanclass="signature">[`groupValues( x, groups )`][@stdlib/array/base/group-values]</span><spanclass="delimiter">: </span><spanclass="description">group elements as arrays associated with distinct keys.</span>
116
122
- <spanclass="signature">[`incrspace( start, stop, increment )`][@stdlib/array/base/incrspace]</span><spanclass="delimiter">: </span><spanclass="description">generate a linearly spaced numeric array according to a provided increment.</span>
117
123
- <spanclass="signature">[`indexOf( x, searchElement, fromIndex, equalNaNs )`][@stdlib/array/base/index-of]</span><spanclass="delimiter">: </span><spanclass="description">return the index of the first element which equals a provided search element.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/ndarray/README.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,7 @@ In addition, the namespace contains the following multidimensional array utility
94
94
- <spanclass="signature">[`ndarrayMostlySafeCasts( [dtype] )`][@stdlib/ndarray/mostly-safe-casts]</span><spanclass="delimiter">: </span><spanclass="description">return a list of ndarray data types to which a provided ndarray data type can be safely cast and, for floating-point data types, can be downcast.</span>
95
95
- <spanclass="signature">[`ndims( x )`][@stdlib/ndarray/ndims]</span><spanclass="delimiter">: </span><spanclass="description">return the number of ndarray dimensions.</span>
96
96
- <spanclass="signature">[`ndarrayNextDataType( [dtype] )`][@stdlib/ndarray/next-dtype]</span><spanclass="delimiter">: </span><spanclass="description">return the next larger ndarray data type of the same kind.</span>
97
+
- <spanclass="signature">[`numelDimension( x, dim )`][@stdlib/ndarray/numel-dimension]</span><spanclass="delimiter">: </span><spanclass="description">return the size (i.e., number of elements) of a specified dimension for a provided ndarray.</span>
97
98
- <spanclass="signature">[`numel( x )`][@stdlib/ndarray/numel]</span><spanclass="delimiter">: </span><spanclass="description">return the number of elements in an ndarray.</span>
98
99
- <spanclass="signature">[`ndarrayOffset( x )`][@stdlib/ndarray/offset]</span><spanclass="delimiter">: </span><spanclass="description">return the index offset specifying the underlying buffer index of the first iterated ndarray element.</span>
99
100
- <spanclass="signature">[`ndarrayOrder( x )`][@stdlib/ndarray/order]</span><spanclass="delimiter">: </span><spanclass="description">return the layout order of a provided ndarray.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/ndarray/base/README.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,7 @@ var o = ns;
94
94
- <spanclass="signature">[`nullaryLoopOrder( shape, stridesX )`][@stdlib/ndarray/base/nullary-loop-interchange-order]</span><spanclass="delimiter">: </span><spanclass="description">reorder ndarray dimensions and associated strides for loop interchange.</span>
95
95
- <spanclass="signature">[`nullaryBlockSize( dtypeX )`][@stdlib/ndarray/base/nullary-tiling-block-size]</span><spanclass="delimiter">: </span><spanclass="description">resolve a loop block size for multi-dimensional array tiled loops.</span>
96
96
- <spanclass="signature">[`nullary( arrays, fcn )`][@stdlib/ndarray/base/nullary]</span><spanclass="delimiter">: </span><spanclass="description">apply a nullary callback and assign results to elements in an output ndarray.</span>
97
+
- <spanclass="signature">[`numelDimension( x, dim )`][@stdlib/ndarray/base/numel-dimension]</span><spanclass="delimiter">: </span><spanclass="description">return the size (i.e., number of elements) of a specified dimension for a provided ndarray.</span>
97
98
- <spanclass="signature">[`numel( shape )`][@stdlib/ndarray/base/numel]</span><spanclass="delimiter">: </span><spanclass="description">return the number of elements in an array.</span>
98
99
- <spanclass="signature">[`offset( x )`][@stdlib/ndarray/base/offset]</span><spanclass="delimiter">: </span><spanclass="description">return the index offset specifying the underlying buffer index of the first iterated ndarray element.</span>
99
100
- <spanclass="signature">[`order( x )`][@stdlib/ndarray/base/order]</span><spanclass="delimiter">: </span><spanclass="description">return the layout order of a provided ndarray.</span>
0 commit comments