Skip to content

Commit 9ddbdbf

Browse files
committed
Auto-generated commit
1 parent a42ad04 commit 9ddbdbf

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-03-31)
7+
## Unreleased (2025-04-01)
88

99
<section class="packages">
1010

@@ -1905,6 +1905,8 @@ A total of 15 people contributed to this release. Thank you to the following con
19051905

19061906
<details>
19071907

1908+
- [`e28064f`](https://github.com/stdlib-js/stdlib/commit/e28064f9d93a232d82297842a9a4bd2895952a55) - **docs:** update namespace TypeScript declarations [(#6478)](https://github.com/stdlib-js/stdlib/pull/6478) _(by stdlib-bot)_
1909+
- [`f2c38e2`](https://github.com/stdlib-js/stdlib/commit/f2c38e218661b2aa21fe58bf2e56ed7c57c2e013) - **docs:** update namespace table of contents [(#6480)](https://github.com/stdlib-js/stdlib/pull/6480) _(by stdlib-bot)_
19081910
- [`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)_
19091911
- [`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)_
19101912
- [`74d2527`](https://github.com/stdlib-js/stdlib/commit/74d2527745106957e4b6228975dceb3578adcc5a) - **feat:** add specialized support for complex number and boolean arrays _(by Athan Reines)_

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ Rylan Yang <[email protected]>
133133
SAHIL KUMAR <[email protected]>
134134
SHIVAM YADAV <[email protected]>
135135
Sahil Goyal <[email protected]>
136+
Sai Avinash <[email protected]>
136137
Sai Srikar Dumpeti <[email protected]>
137138
Sanchay Ketan Sinha <[email protected]>
138139
Sarthak Paandey <[email protected]>
@@ -170,6 +171,7 @@ Yuvi Mittal <[email protected]>
170171
171172
ekambains <[email protected]>
172173
fadiothman22 <[email protected]>
174+
lohithganni <[email protected]>
173175
olenkabilonizhka <[email protected]>
174176
pranav-1720 <[email protected]>
175177
rahulrangers <[email protected]>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,11 @@ 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">[`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>
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 SameValue Algorithm.</span>
189189
- <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>
190190
- <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>
191191
- <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>
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>
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 SameValue Algorithm.</span>
193193
- <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>
194194
- <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>
195195
- <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>

docs/types/index.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2856,9 +2856,13 @@ interface Namespace {
28562856
*
28572857
* ## Notes
28582858
*
2859+
* - The function uses the [SameValue Algorithm][ecma-262-same-value-algorithm], as specified in ECMAScript 5.
2860+
* - In contrast to the strict equality operator `===`, `-0` and `+0` are distinguishable and `NaNs` are the same.
28592861
* - If unable to find an element which equals a provided search element, the function returns `-1`.
28602862
* - If `fromIndex` is less than zero, the starting index is resolved relative to the last array element, with the last array element corresponding to `fromIndex = -1`.
28612863
*
2864+
* [ecma-262-same-value-algorithm]: http://ecma-international.org/ecma-262/5.1/#sec-9.12
2865+
*
28622866
* @param x - input array
28632867
* @param searchElement - search element
28642868
* @param fromIndex - starting index (inclusive)
@@ -2979,10 +2983,14 @@ interface Namespace {
29792983
*
29802984
* ## Notes
29812985
*
2986+
* - The function uses the [SameValue Algorithm][ecma-262-same-value-algorithm], as specified in ECMAScript 5.
2987+
* - In contrast to the strict equality operator `===`, `-0` and `+0` are distinguishable and `NaNs` are the same.
29822988
* - The function scans an input array from the starting index to the beginning of the array (i.e., backward).
29832989
* - If unable to find an element which equals a provided search element, the function returns `-1`.
29842990
* - If `fromIndex` is less than zero, the starting index is resolved relative to the last array element, with the last array element corresponding to `fromIndex = -1`.
29852991
*
2992+
* [ecma-262-same-value-algorithm]: http://ecma-international.org/ecma-262/5.1/#sec-9.12
2993+
*
29862994
* @param x - input array
29872995
* @param searchElement - search element
29882996
* @param fromIndex - starting index (inclusive)

0 commit comments

Comments
 (0)