Skip to content

Commit ff7f459

Browse files
committed
Auto-generated commit
1 parent 5ac2d51 commit ff7f459

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

CHANGELOG.md

Lines changed: 2 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-12-18)
7+
## Unreleased (2025-12-19)
88

99
<section class="features">
1010

@@ -155,6 +155,7 @@ A total of 30 issues were closed in this release:
155155

156156
<details>
157157

158+
- [`9f89605`](https://github.com/stdlib-js/stdlib/commit/9f896050ca67f34a4235b2fec9222b4ae36a8b6c) - **docs:** update namespace table of contents [(#9240)](https://github.com/stdlib-js/stdlib/pull/9240) _(by stdlib-bot)_
158159
- [`53ce62b`](https://github.com/stdlib-js/stdlib/commit/53ce62bbcc35351cf98c746ca6ca90d486cbb5e8) - **feat:** add `isAlmostSameValueComplex64Array` to namespace _(by Athan Reines)_
159160
- [`5951cbf`](https://github.com/stdlib-js/stdlib/commit/5951cbfc129af5af066f5d12348e33ec4d3edc44) - **feat:** add `assert/is-almost-same-value-complex64array` _(by Athan Reines)_
160161
- [`835bec5`](https://github.com/stdlib-js/stdlib/commit/835bec5f4bfb422dd3d5b44d1de90e78d158dce2) - **feat:** add `isAlmostSameValueComplex128Array` to namespace _(by Athan Reines)_

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,11 @@ The namespace includes utilities for validating other special arrays or buffers:
275275
- <span class="signature">[`isAlmostEqualComplex64array( v1, v2, maxULP )`][@stdlib/assert/is-almost-equal-complex64array]</span><span class="delimiter">: </span><span class="description">test if two arguments are both Complex64Arrays and contain respective elements which are approximately equal within a specified number of ULPs (units in the last place).</span>
276276
- <span class="signature">[`isAlmostEqualFloat32array( v1, v2, maxULP )`][@stdlib/assert/is-almost-equal-float32array]</span><span class="delimiter">: </span><span class="description">test if two arguments are both Float32Arrays and contain respective elements which are approximately equal within a specified number of ULPs (units in the last place).</span>
277277
- <span class="signature">[`isAlmostEqualFloat64Array( v1, v2, maxULP )`][@stdlib/assert/is-almost-equal-float64array]</span><span class="delimiter">: </span><span class="description">test if two arguments are both Float64Arrays and contain respective elements which are approximately equal within a specified number of ULPs (units in the last place).</span>
278+
- <span class="signature">[`isAlmostSameValueArray( v1, v2, maxULP )`][@stdlib/assert/is-almost-same-value-array]</span><span class="delimiter">: </span><span class="description">test if two arguments are both generic arrays and contain respective elements which are approximately the same value within a specified number of ULPs (units in the last place).</span>
279+
- <span class="signature">[`isAlmostSameValueComplex128Array( v1, v2, maxULP )`][@stdlib/assert/is-almost-same-value-complex128array]</span><span class="delimiter">: </span><span class="description">test if two arguments are both Complex128Arrays and contain respective elements which are approximately the same value within a specified number of ULPs (units in the last place).</span>
280+
- <span class="signature">[`isAlmostSameValueComplex64Array( v1, v2, maxULP )`][@stdlib/assert/is-almost-same-value-complex64array]</span><span class="delimiter">: </span><span class="description">test if two arguments are both Complex64Arrays and contain respective elements which are approximately the same value within a specified number of ULPs (units in the last place).</span>
281+
- <span class="signature">[`isAlmostSameValueFloat32Array( v1, v2, maxULP )`][@stdlib/assert/is-almost-same-value-float32array]</span><span class="delimiter">: </span><span class="description">test if two arguments are both Float32Arrays and contain respective elements which are approximately the same value within a specified number of ULPs (units in the last place).</span>
282+
- <span class="signature">[`isAlmostSameValueFloat64Array( v1, v2, maxULP )`][@stdlib/assert/is-almost-same-value-float64array]</span><span class="delimiter">: </span><span class="description">test if two arguments are both Float64Arrays and contain respective elements which are approximately the same value within a specified number of ULPs (units in the last place).</span>
278283
- <span class="signature">[`isArrayLength( value )`][@stdlib/assert/is-array-length]</span><span class="delimiter">: </span><span class="description">test if a value is a valid array length.</span>
279284
- <span class="signature">[`isArrayLikeObject( value )`][@stdlib/assert/is-array-like-object]</span><span class="delimiter">: </span><span class="description">test if a value is an array-like object.</span>
280285
- <span class="signature">[`isArrayLike( value )`][@stdlib/assert/is-array-like]</span><span class="delimiter">: </span><span class="description">test if a value is array-like.</span>
@@ -1075,6 +1080,16 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
10751080

10761081
[@stdlib/assert/is-almost-equal-float64array]: https://github.com/stdlib-js/assert/tree/main/is-almost-equal-float64array
10771082

1083+
[@stdlib/assert/is-almost-same-value-array]: https://github.com/stdlib-js/assert/tree/main/is-almost-same-value-array
1084+
1085+
[@stdlib/assert/is-almost-same-value-complex128array]: https://github.com/stdlib-js/assert/tree/main/is-almost-same-value-complex128array
1086+
1087+
[@stdlib/assert/is-almost-same-value-complex64array]: https://github.com/stdlib-js/assert/tree/main/is-almost-same-value-complex64array
1088+
1089+
[@stdlib/assert/is-almost-same-value-float32array]: https://github.com/stdlib-js/assert/tree/main/is-almost-same-value-float32array
1090+
1091+
[@stdlib/assert/is-almost-same-value-float64array]: https://github.com/stdlib-js/assert/tree/main/is-almost-same-value-float64array
1092+
10781093
[@stdlib/assert/is-array-length]: https://github.com/stdlib-js/assert/tree/main/is-array-length
10791094

10801095
[@stdlib/assert/is-array-like-object]: https://github.com/stdlib-js/assert/tree/main/is-array-like-object

0 commit comments

Comments
 (0)