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
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,8 @@ The namespace exports the following:
93
93
- <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>
94
94
- <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>
95
95
- <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>
96
+
- <spanclass="signature">[`cuany( x )`][@stdlib/array/base/cuany]</span><spanclass="delimiter">: </span><spanclass="description">cumulatively test whether at least one element in a provided array is truthy.</span>
97
+
- <spanclass="signature">[`cuevery( x )`][@stdlib/array/base/cuevery]</span><spanclass="delimiter">: </span><spanclass="description">cumulatively test whether every element in a provided array is truthy.</span>
- <spanclass="signature">[`everyByRight( x, predicate[, thisArg] )`][@stdlib/array/base/every-by-right]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements in an array pass a test implemented by a predicate function, iterating from right to left.</span>
98
100
- <spanclass="signature">[`everyBy( x, predicate[, thisArg] )`][@stdlib/array/base/every-by]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements in an array pass a test implemented by a predicate function.</span>
@@ -168,6 +170,7 @@ The namespace exports the following:
168
170
- <spanclass="signature">[`ones4d( shape )`][@stdlib/array/base/ones4d]</span><spanclass="delimiter">: </span><spanclass="description">create a four-dimensional nested array filled with ones.</span>
169
171
- <spanclass="signature">[`ones5d( shape )`][@stdlib/array/base/ones5d]</span><spanclass="delimiter">: </span><spanclass="description">create a five-dimensional nested array filled with ones.</span>
170
172
- <spanclass="signature">[`onesnd( shape )`][@stdlib/array/base/onesnd]</span><spanclass="delimiter">: </span><spanclass="description">create an n-dimensional nested array filled with ones.</span>
173
+
- <spanclass="signature">[`put( x, indices, values, mode )`][@stdlib/array/base/put]</span><spanclass="delimiter">: </span><spanclass="description">replace specified elements of an array with provided values.</span>
171
174
- <spanclass="signature">[`quaternary2d( arrays, shape, fcn )`][@stdlib/array/base/quaternary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a quaternary callback to elements in four two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.</span>
172
175
- <spanclass="signature">[`quaternary3d( arrays, shape, fcn )`][@stdlib/array/base/quaternary3d]</span><spanclass="delimiter">: </span><spanclass="description">apply a quaternary callback to elements in four three-dimensional nested input arrays and assign results to elements in a three-dimensional nested output array.</span>
173
176
- <spanclass="signature">[`quaternary4d( arrays, shape, fcn )`][@stdlib/array/base/quaternary4d]</span><spanclass="delimiter">: </span><spanclass="description">apply a quaternary callback to elements in four four-dimensional nested input arrays and assign results to elements in a four-dimensional nested output array.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/array/base/assert/README.md
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,8 @@ The namespace exports the following:
48
48
- <spanclass="signature">[`contains( x, value )`][@stdlib/array/base/assert/contains]</span><spanclass="delimiter">: </span><spanclass="description">test if an array contains a provided search value.</span>
49
49
- <spanclass="signature">[`hasSameValues( x, y )`][@stdlib/array/base/assert/has-same-values]</span><spanclass="delimiter">: </span><spanclass="description">test if two arrays have the same values.</span>
50
50
- <spanclass="signature">[`isAccessorArray( value )`][@stdlib/array/base/assert/is-accessor-array]</span><spanclass="delimiter">: </span><spanclass="description">test if an array-like object supports the accessor (get/set) protocol.</span>
51
+
- <spanclass="signature">[`isBooleanDataType( value )`][@stdlib/array/base/assert/is-boolean-data-type]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported array boolean data type.</span>
52
+
- <spanclass="signature">[`isBooleanArray( value )`][@stdlib/array/base/assert/is-booleanarray]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a `BooleanArray`.</span>
51
53
- <spanclass="signature">[`isComplexFloatingPointDataType( value )`][@stdlib/array/base/assert/is-complex-floating-point-data-type]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported array complex-valued floating-point data type.</span>
52
54
- <spanclass="signature">[`isComplexTypedArray( value )`][@stdlib/array/base/assert/is-complex-typed-array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a complex typed array.</span>
53
55
- <spanclass="signature">[`isComplex128Array( value )`][@stdlib/array/base/assert/is-complex128array]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a `Complex128Array`.</span>
0 commit comments