Skip to content

Commit 94cae3f

Browse files
committed
Auto-generated commit
1 parent 16c4b05 commit 94cae3f

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
@@ -1626,6 +1626,7 @@ A total of 13 people contributed to this release. Thank you to the following con
16261626

16271627
<details>
16281628

1629+
- [`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)_
16291630
- [`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)_
16301631
- [`74d2527`](https://github.com/stdlib-js/stdlib/commit/74d2527745106957e4b6228975dceb3578adcc5a) - **feat:** add specialized support for complex number and boolean arrays _(by Athan Reines)_
16311632
- [`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]>

base/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,12 @@ The namespace exports the following:
152152
- <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>
153153
- <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>
154154
- <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>
155-
- <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>
155+
- <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>
156+
- <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>
156157
- <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>
157158
- <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>
158-
- <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>
159+
- <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>
160+
- <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>
159161
- <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>
160162
- <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>
161163
- <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>
@@ -518,12 +520,16 @@ var squared = ns.map2d( arr2d, [ 2, 3 ], randu );
518520

519521
[@stdlib/array/base/incrspace]: https://github.com/stdlib-js/array/tree/main/base/incrspace
520522

523+
[@stdlib/array/base/index-of-same-value]: https://github.com/stdlib-js/array/tree/main/base/index-of-same-value
524+
521525
[@stdlib/array/base/index-of]: https://github.com/stdlib-js/array/tree/main/base/index-of
522526

523527
[@stdlib/array/base/indices-complement]: https://github.com/stdlib-js/array/tree/main/base/indices-complement
524528

525529
[@stdlib/array/base/join]: https://github.com/stdlib-js/array/tree/main/base/join
526530

531+
[@stdlib/array/base/last-index-of-same-value]: https://github.com/stdlib-js/array/tree/main/base/last-index-of-same-value
532+
527533
[@stdlib/array/base/last-index-of]: https://github.com/stdlib-js/array/tree/main/base/last-index-of
528534

529535
[@stdlib/array/base/last]: https://github.com/stdlib-js/array/tree/main/base/last

0 commit comments

Comments
 (0)