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/base/README.md
+18
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,7 @@ The namespace exports the following:
60
60
- <spanclass="signature">[`at4d( x, i0, i1, i2, i3 )`][@stdlib/array/base/at4d]</span><spanclass="delimiter">: </span><spanclass="description">return an element from a four-dimensional nested array.</span>
61
61
- <spanclass="signature">[`at5d( x, i0, i1, i2, i3, i4 )`][@stdlib/array/base/at5d]</span><spanclass="delimiter">: </span><spanclass="description">return an element from a five-dimensional nested array.</span>
62
62
- <spanclass="signature">[`atnd( x, i0[, ...indices] )`][@stdlib/array/base/atnd]</span><spanclass="delimiter">: </span><spanclass="description">return an element from an n-dimensional nested array.</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>
64
65
- <spanclass="signature">[`bifurcateEntries( x, filter )`][@stdlib/array/base/bifurcate-entries]</span><spanclass="delimiter">: </span><spanclass="description">split array element entries into two groups.</span>
65
66
- <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>
@@ -97,6 +98,7 @@ The namespace exports the following:
97
98
- <spanclass="signature">[`copy( x )`][@stdlib/array/base/copy]</span><spanclass="delimiter">: </span><spanclass="description">copy the elements of an array-like object to a new "generic" array.</span>
98
99
- <spanclass="signature">[`countFalsy( x )`][@stdlib/array/base/count-falsy]</span><spanclass="delimiter">: </span><spanclass="description">count the number of falsy elements in an array.</span>
99
100
- <spanclass="signature">[`countIf( x, predicate[, thisArg] )`][@stdlib/array/base/count-if]</span><spanclass="delimiter">: </span><spanclass="description">count the number of elements in an array which pass a test implemented by a predicate function.</span>
101
+
- <spanclass="signature">[`countIfs( x0, predicate0[, x1, predicate1[, x2, predicate2[, ...args]]] )`][@stdlib/array/base/count-ifs]</span><spanclass="delimiter">: </span><spanclass="description">perform element-wise evaluation of one or more input arrays according to provided predicate functions and count the number of elements for which all predicates respectively return `true`.</span>
100
102
- <spanclass="signature">[`countSameValueZero( x, value )`][@stdlib/array/base/count-same-value-zero]</span><spanclass="delimiter">: </span><spanclass="description">count the number of elements in an array that are equal to a specified value.</span>
101
103
- <spanclass="signature">[`countSameValue( x, value )`][@stdlib/array/base/count-same-value]</span><spanclass="delimiter">: </span><spanclass="description">count the number of elements in an array that are equal to a specified value.</span>
102
104
- <spanclass="signature">[`countTruthy( x )`][@stdlib/array/base/count-truthy]</span><spanclass="delimiter">: </span><spanclass="description">count the number of truthy elements in an array.</span>
@@ -160,6 +162,7 @@ The namespace exports the following:
160
162
- <spanclass="signature">[`lastIndexOf( x, searchElement, fromIndex )`][@stdlib/array/base/last-index-of]</span><spanclass="delimiter">: </span><spanclass="description">return the index of the last element which equals a provided search element.</span>
161
163
- <spanclass="signature">[`last( x )`][@stdlib/array/base/last]</span><spanclass="delimiter">: </span><spanclass="description">return the last element of an array-like object.</span>
- <spanclass="signature">[`logspace( a, b, length )`][@stdlib/array/base/logspace]</span><spanclass="delimiter">: </span><spanclass="description">generate a logarithmically spaced numeric array.</span>
164
167
- <spanclass="signature">[`map2d( x, shape, fcn[, thisArg] )`][@stdlib/array/base/map2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a function to elements in a two-dimensional nested input array and assign results to elements in a new two-dimensional nested output array.</span>
165
168
- <spanclass="signature">[`map3d( x, shape, fcn[, thisArg] )`][@stdlib/array/base/map3d]</span><spanclass="delimiter">: </span><spanclass="description">apply a function to elements in a three-dimensional nested input array and assign results to elements in a new three-dimensional nested output array.</span>
@@ -205,6 +208,7 @@ The namespace exports the following:
205
208
- <spanclass="signature">[`quinary5d( arrays, shape, fcn )`][@stdlib/array/base/quinary5d]</span><spanclass="delimiter">: </span><spanclass="description">apply a quinary callback to elements in five five-dimensional nested input arrays and assign results to elements in a five-dimensional nested output array.</span>
206
209
- <spanclass="signature">[`reject( x, predicate[, thisArg] )`][@stdlib/array/base/reject]</span><spanclass="delimiter">: </span><spanclass="description">return a shallow copy of an array containing only those elements which fail a test implemented by a predicate function.</span>
207
210
- <spanclass="signature">[`removeAt( x, index )`][@stdlib/array/base/remove-at]</span><spanclass="delimiter">: </span><spanclass="description">remove an element from an array.</span>
211
+
- <spanclass="signature">[`reshape( x, fromShape, toShape, colexicographic )`][@stdlib/array/base/reshape]</span><spanclass="delimiter">: </span><spanclass="description">reshape a nested array into another nested array having a desired shape.</span>
208
212
- <spanclass="signature">[`resolveGetter( x )`][@stdlib/array/base/resolve-getter]</span><spanclass="delimiter">: </span><spanclass="description">return an accessor function for retrieving an element from an array-like object.</span>
209
213
- <spanclass="signature">[`resolveSetter( x )`][@stdlib/array/base/resolve-setter]</span><spanclass="delimiter">: </span><spanclass="description">return an accessor function for setting an element in an array-like object.</span>
210
214
- <spanclass="signature">[`reverse( x )`][@stdlib/array/base/reverse]</span><spanclass="delimiter">: </span><spanclass="description">reverse an array in-place.</span>
@@ -216,6 +220,8 @@ The namespace exports the following:
216
220
- <spanclass="signature">[`strided2array3d( x, shape, strides, offset )`][@stdlib/array/base/strided2array3d]</span><spanclass="delimiter">: </span><spanclass="description">convert a strided array to a three-dimensional nested array.</span>
217
221
- <spanclass="signature">[`strided2array4d( x, shape, strides, offset )`][@stdlib/array/base/strided2array4d]</span><spanclass="delimiter">: </span><spanclass="description">convert a strided array to a four-dimensional nested array.</span>
218
222
- <spanclass="signature">[`strided2array5d( x, shape, strides, offset )`][@stdlib/array/base/strided2array5d]</span><spanclass="delimiter">: </span><spanclass="description">convert a strided array to a five-dimensional nested array.</span>
- <spanclass="signature">[`takeIndexed( x, indices )`][@stdlib/array/base/take-indexed]</span><spanclass="delimiter">: </span><spanclass="description">take elements from an indexed array.</span>
220
226
- <spanclass="signature">[`takeIndexed2( x, y, indices )`][@stdlib/array/base/take-indexed2]</span><spanclass="delimiter">: </span><spanclass="description">take elements from two indexed arrays in a single pass.</span>
221
227
- <spanclass="signature">[`take( x, indices, mode )`][@stdlib/array/base/take]</span><spanclass="delimiter">: </span><spanclass="description">take elements from an array.</span>
- <spanclass="signature">[`identity( z )`][@stdlib/complex/float32/base/identity]</span><spanclass="delimiter">: </span><spanclass="description">evaluate the identity function of a single-precision complex floating-point number.</span>
- <spanclass="signature">[`neg( z )`][@stdlib/complex/float32/base/neg]</span><spanclass="delimiter">: </span><spanclass="description">negate a single-precision complex floating-point number.</span>
0 commit comments