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
+8-2Lines changed: 8 additions & 2 deletions
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>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/assert/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -366,7 +366,7 @@ The remaining namespace utilities are as follows:
366
366
367
367
<divclass="namespace-toc">
368
368
369
-
- <spanclass="signature">[`contains( val, searchValue[, position] )`][@stdlib/assert/contains]</span><spanclass="delimiter">: </span><spanclass="description">test if an array-like value contains a search value.</span>
369
+
- <spanclass="signature">[`contains( value, searchValue[, position] )`][@stdlib/assert/contains]</span><spanclass="delimiter">: </span><spanclass="description">test if an array-like value contains a search value.</span>
370
370
- <spanclass="signature">[`deepEqual( a, b )`][@stdlib/assert/deep-equal]</span><spanclass="delimiter">: </span><spanclass="description">test for deep equality between two values.</span>
371
371
- <spanclass="signature">[`deepHasOwnProp( value, path[, options] )`][@stdlib/assert/deep-has-own-property]</span><spanclass="delimiter">: </span><spanclass="description">test whether an object contains a nested key path.</span>
372
372
- <spanclass="signature">[`deepHasProp( value, path[, options] )`][@stdlib/assert/deep-has-property]</span><spanclass="delimiter">: </span><spanclass="description">test whether an object contains a nested key path, either own or inherited.</span>
0 commit comments