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)_
1910
1911
-[`b27b960`](https://github.com/stdlib-js/stdlib/commit/b27b96086d569c9b6c99f7a5f2a24d74c8d41618) - **test:** add test cases _(by Athan Reines)_
Copy file name to clipboardExpand all lines: README.md
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -185,10 +185,12 @@ The namespace exports the following:
185
185
- <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>
186
186
- <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>
187
187
- <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>
188
-
- <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>
188
+
- <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>
189
+
- <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>
189
190
- <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>
190
191
- <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>
191
-
- <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>
192
+
- <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>
193
+
- <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>
192
194
- <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