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
+6
Original file line number
Diff line number
Diff line change
@@ -89,6 +89,7 @@ The namespace exports the following:
89
89
- <spanclass="signature">[`copyIndexed( x )`][@stdlib/array/base/copy-indexed]</span><spanclass="delimiter">: </span><spanclass="description">copy the elements of an indexed array-like object to a new "generic" array.</span>
90
90
- <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>
91
91
- <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>
92
+
- <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>
92
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>
93
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>
94
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>
@@ -140,6 +141,7 @@ The namespace exports the following:
140
141
- <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>
141
142
- <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>
142
143
- <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>
144
+
- <spanclass="signature">[`join( x, separator )`][@stdlib/array/base/join]</span><spanclass="delimiter">: </span><spanclass="description">return a string created by joining array elements using a specified separator.</span>
143
145
- <spanclass="signature">[`lastIndexOf( x, searchElement, fromIndex, equalNaNs )`][@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>
144
146
- <spanclass="signature">[`last( x )`][@stdlib/array/base/last]</span><spanclass="delimiter">: </span><spanclass="description">return the last element of an array-like object.</span>
0 commit comments