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
- [`74d2527`](https://github.com/stdlib-js/stdlib/commit/74d2527745106957e4b6228975dceb3578adcc5a) - **feat:** add specialized support for complex number and boolean arrays _(by Athan Reines)_
1631
1632
- [`b27b960`](https://github.com/stdlib-js/stdlib/commit/b27b96086d569c9b6c99f7a5f2a24d74c8d41618) - **test:** add test cases _(by Athan Reines)_
Copy file name to clipboardExpand all lines: base/README.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -152,10 +152,12 @@ The namespace exports the following:
152
152
- <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>
153
153
- <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>
154
154
- <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>
155
-
- <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>
155
+
- <spanclass="signature">[`indexOfSameValue( x, searchElement, fromIndex )`][@stdlib/array/base/index-of-same-value]</span><spanclass="delimiter">: </span><spanclass="description">return the index of the first element which equals a provided search element according to the same value algorithm.</span>
156
+
- <spanclass="signature">[`indexOf( x, searchElement, fromIndex )`][@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>
156
157
- <spanclass="signature">[`indicesComplement( N, indices )`][@stdlib/array/base/indices-complement]</span><spanclass="delimiter">: </span><spanclass="description">return the complement of a list of array indices.</span>
157
158
- <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>
158
-
- <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>
159
+
- <spanclass="signature">[`lastIndexOfSameValue( x, searchElement, fromIndex )`][@stdlib/array/base/last-index-of-same-value]</span><spanclass="delimiter">: </span><spanclass="description">return the index of the last element which equals a provided search element according to the same value algorithm.</span>
160
+
- <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>
159
161
- <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