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: README.md
+18
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,7 @@ The namespace exports the following:
93
93
- <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>
94
94
- <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>
95
95
- <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>
97
98
- <spanclass="signature">[`bifurcateEntries( x, filter )`][@stdlib/array/base/bifurcate-entries]</span><spanclass="delimiter">: </span><spanclass="description">split array element entries into two groups.</span>
98
99
- <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>
@@ -130,6 +131,7 @@ The namespace exports the following:
130
131
- <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>
131
132
- <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>
132
133
- <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>
134
+
- <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>
133
135
- <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>
134
136
- <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>
135
137
- <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>
@@ -193,6 +195,7 @@ The namespace exports the following:
193
195
- <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>
194
196
- <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>
197
200
- <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>
198
201
- <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>
@@ -238,6 +241,7 @@ The namespace exports the following:
238
241
- <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>
239
242
- <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>
240
243
- <spanclass="signature">[`removeAt( x, index )`][@stdlib/array/base/remove-at]</span><spanclass="delimiter">: </span><spanclass="description">remove an element from an array.</span>
244
+
- <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>
241
245
- <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>
242
246
- <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>
243
247
- <spanclass="signature">[`reverse( x )`][@stdlib/array/base/reverse]</span><spanclass="delimiter">: </span><spanclass="description">reverse an array in-place.</span>
@@ -249,6 +253,8 @@ The namespace exports the following:
249
253
- <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>
250
254
- <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>
251
255
- <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>
253
259
- <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>
254
260
- <spanclass="signature">[`take( x, indices, mode )`][@stdlib/array/base/take]</span><spanclass="delimiter">: </span><spanclass="description">take elements from an array.</span>
0 commit comments