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/assert/README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -242,6 +242,11 @@ The namespace includes utilities for validating other special arrays or buffers:
242
242
- <spanclass="signature">[`isAlmostEqualComplex64array( v1, v2, maxULP )`][@stdlib/assert/is-almost-equal-complex64array]</span><spanclass="delimiter">: </span><spanclass="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>
243
243
- <spanclass="signature">[`isAlmostEqualFloat32array( v1, v2, maxULP )`][@stdlib/assert/is-almost-equal-float32array]</span><spanclass="delimiter">: </span><spanclass="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>
244
244
- <spanclass="signature">[`isAlmostEqualFloat64Array( v1, v2, maxULP )`][@stdlib/assert/is-almost-equal-float64array]</span><spanclass="delimiter">: </span><spanclass="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>
245
+
- <spanclass="signature">[`isAlmostSameValueArray( v1, v2, maxULP )`][@stdlib/assert/is-almost-same-value-array]</span><spanclass="delimiter">: </span><spanclass="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>
246
+
- <spanclass="signature">[`isAlmostSameValueComplex128Array( v1, v2, maxULP )`][@stdlib/assert/is-almost-same-value-complex128array]</span><spanclass="delimiter">: </span><spanclass="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>
247
+
- <spanclass="signature">[`isAlmostSameValueComplex64Array( v1, v2, maxULP )`][@stdlib/assert/is-almost-same-value-complex64array]</span><spanclass="delimiter">: </span><spanclass="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>
248
+
- <spanclass="signature">[`isAlmostSameValueFloat32Array( v1, v2, maxULP )`][@stdlib/assert/is-almost-same-value-float32array]</span><spanclass="delimiter">: </span><spanclass="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>
249
+
- <spanclass="signature">[`isAlmostSameValueFloat64Array( v1, v2, maxULP )`][@stdlib/assert/is-almost-same-value-float64array]</span><spanclass="delimiter">: </span><spanclass="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>
245
250
- <spanclass="signature">[`isArrayLength( value )`][@stdlib/assert/is-array-length]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a valid array length.</span>
246
251
- <spanclass="signature">[`isArrayLikeObject( value )`][@stdlib/assert/is-array-like-object]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an array-like object.</span>
247
252
- <spanclass="signature">[`isArrayLike( value )`][@stdlib/assert/is-array-like]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is array-like.</span>
0 commit comments