Skip to content

Commit a42ad04

Browse files
committed
Auto-generated commit
1 parent d7691e3 commit a42ad04

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1905,6 +1905,7 @@ A total of 15 people contributed to this release. Thank you to the following con
19051905

19061906
<details>
19071907

1908+
- [`9998d76`](https://github.com/stdlib-js/stdlib/commit/9998d768131de91b59e2808ddf4ee552407d4175) - **docs:** update namespace table of contents [(#6461)](https://github.com/stdlib-js/stdlib/pull/6461) _(by stdlib-bot)_
19081909
- [`7899d23`](https://github.com/stdlib-js/stdlib/commit/7899d23195464e9fc0a10b1f0e57b5aa230de5e2) - **feat:** update namespace TypeScript declarations [(#6459)](https://github.com/stdlib-js/stdlib/pull/6459) _(by stdlib-bot)_
19091910
- [`74d2527`](https://github.com/stdlib-js/stdlib/commit/74d2527745106957e4b6228975dceb3578adcc5a) - **feat:** add specialized support for complex number and boolean arrays _(by Athan Reines)_
19101911
- [`b27b960`](https://github.com/stdlib-js/stdlib/commit/b27b96086d569c9b6c99f7a5f2a24d74c8d41618) - **test:** add test cases _(by Athan Reines)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ Ryan Seal <[email protected]>
132132
Rylan Yang <[email protected]>
133133
SAHIL KUMAR <[email protected]>
134134
SHIVAM YADAV <[email protected]>
135+
Sahil Goyal <[email protected]>
135136
Sai Srikar Dumpeti <[email protected]>
136137
Sanchay Ketan Sinha <[email protected]>
137138
Sarthak Paandey <[email protected]>

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,12 @@ The namespace exports the following:
185185
- <span class="signature">[`groupValuesBy( x, indicator[, thisArg] )`][@stdlib/array/base/group-values-by]</span><span class="delimiter">: </span><span class="description">group element values according to an indicator function.</span>
186186
- <span class="signature">[`groupValues( x, groups )`][@stdlib/array/base/group-values]</span><span class="delimiter">: </span><span class="description">group elements as arrays associated with distinct keys.</span>
187187
- <span class="signature">[`incrspace( start, stop, increment )`][@stdlib/array/base/incrspace]</span><span class="delimiter">: </span><span class="description">generate a linearly spaced numeric array according to a provided increment.</span>
188-
- <span class="signature">[`indexOf( x, searchElement, fromIndex, equalNaNs )`][@stdlib/array/base/index-of]</span><span class="delimiter">: </span><span class="description">return the index of the first element which equals a provided search element.</span>
188+
- <span class="signature">[`indexOfSameValue( x, searchElement, fromIndex )`][@stdlib/array/base/index-of-same-value]</span><span class="delimiter">: </span><span class="description">return the index of the first element which equals a provided search element according to the same value algorithm.</span>
189+
- <span class="signature">[`indexOf( x, searchElement, fromIndex )`][@stdlib/array/base/index-of]</span><span class="delimiter">: </span><span class="description">return the index of the first element which equals a provided search element.</span>
189190
- <span class="signature">[`indicesComplement( N, indices )`][@stdlib/array/base/indices-complement]</span><span class="delimiter">: </span><span class="description">return the complement of a list of array indices.</span>
190191
- <span class="signature">[`join( x, separator )`][@stdlib/array/base/join]</span><span class="delimiter">: </span><span class="description">return a string created by joining array elements using a specified separator.</span>
191-
- <span class="signature">[`lastIndexOf( x, searchElement, fromIndex, equalNaNs )`][@stdlib/array/base/last-index-of]</span><span class="delimiter">: </span><span class="description">return the index of the last element which equals a provided search element.</span>
192+
- <span class="signature">[`lastIndexOfSameValue( x, searchElement, fromIndex )`][@stdlib/array/base/last-index-of-same-value]</span><span class="delimiter">: </span><span class="description">return the index of the last element which equals a provided search element according to the same value algorithm.</span>
193+
- <span class="signature">[`lastIndexOf( x, searchElement, fromIndex )`][@stdlib/array/base/last-index-of]</span><span class="delimiter">: </span><span class="description">return the index of the last element which equals a provided search element.</span>
192194
- <span class="signature">[`last( x )`][@stdlib/array/base/last]</span><span class="delimiter">: </span><span class="description">return the last element of an array-like object.</span>
193195
- <span class="signature">[`linspace( start, stop, length )`][@stdlib/array/base/linspace]</span><span class="delimiter">: </span><span class="description">generate a linearly spaced numeric array.</span>
194196
- <span class="signature">[`logspace( a, b, length )`][@stdlib/array/base/logspace]</span><span class="delimiter">: </span><span class="description">generate a logarithmically spaced numeric array.</span>
@@ -619,12 +621,16 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
619621

620622
[@stdlib/array/base/incrspace]: https://github.com/stdlib-js/array-base-incrspace
621623

624+
[@stdlib/array/base/index-of-same-value]: https://github.com/stdlib-js/array-base-index-of-same-value
625+
622626
[@stdlib/array/base/index-of]: https://github.com/stdlib-js/array-base-index-of
623627

624628
[@stdlib/array/base/indices-complement]: https://github.com/stdlib-js/array-base-indices-complement
625629

626630
[@stdlib/array/base/join]: https://github.com/stdlib-js/array-base-join
627631

632+
[@stdlib/array/base/last-index-of-same-value]: https://github.com/stdlib-js/array-base-last-index-of-same-value
633+
628634
[@stdlib/array/base/last-index-of]: https://github.com/stdlib-js/array-base-last-index-of
629635

630636
[@stdlib/array/base/last]: https://github.com/stdlib-js/array-base-last

0 commit comments

Comments
 (0)