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/array/base/assert/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,7 @@ The namespace exports the following:
47
47
48
48
- <spanclass="signature">[`contains( x, value )`][@stdlib/array/base/assert/contains]</span><spanclass="delimiter">: </span><spanclass="description">test if an array contains a provided search value.</span>
49
49
- <spanclass="signature">[`hasAlmostEqualValues( x, y, maxULP )`][@stdlib/array/base/assert/has-almost-equal-values]</span><spanclass="delimiter">: </span><spanclass="description">test if two arrays have respective elements which are approximately equal within a specified number of ULPs (units in the last place).</span>
50
+
- <spanclass="signature">[`hasAlmostSameValues( x, y, maxULP )`][@stdlib/array/base/assert/has-almost-same-values]</span><spanclass="delimiter">: </span><spanclass="description">test if two arrays have respective elements which are approximately the same value within a specified number of ULPs (units in the last place).</span>
50
51
- <spanclass="signature">[`hasEqualValuesIndexed( x, y )`][@stdlib/array/base/assert/has-equal-values-indexed]</span><spanclass="delimiter">: </span><spanclass="description">test if two indexed arrays have equal values.</span>
51
52
- <spanclass="signature">[`hasEqualValues( x, y )`][@stdlib/array/base/assert/has-equal-values]</span><spanclass="delimiter">: </span><spanclass="description">test if two arrays have equal values.</span>
52
53
- <spanclass="signature">[`hasSameValues( x, y )`][@stdlib/array/base/assert/has-same-values]</span><spanclass="delimiter">: </span><spanclass="description">test if two arrays have the same values.</span>
@@ -405,6 +406,7 @@ The remaining namespace utilities are as follows:
405
406
- <spanclass="signature">[`isAccessorPropertyIn( value, property )`][@stdlib/assert/is-accessor-property-in]</span><spanclass="delimiter">: </span><spanclass="description">test if an object's own or inherited property has an accessor descriptor.</span>
406
407
- <spanclass="signature">[`isAccessorProperty( value, property )`][@stdlib/assert/is-accessor-property]</span><spanclass="delimiter">: </span><spanclass="description">test if an object's own property has an accessor descriptor.</span>
407
408
- <spanclass="signature">[`isAlmostEqual( a, b, maxULP )`][@stdlib/assert/is-almost-equal]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are approximately equal within a specified number of ULPs (units in the last place).</span>
409
+
- <spanclass="signature">[`isAlmostSameValue( a, b, maxULP )`][@stdlib/assert/is-almost-same-value]</span><spanclass="delimiter">: </span><spanclass="description">test if two arguments are approximately the same value within a specified number of ULPs (units in the last place).</span>
408
410
- <spanclass="signature">[`isAlphagram( value )`][@stdlib/assert/is-alphagram]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an alphagram.</span>
409
411
- <spanclass="signature">[`isAlphaNumeric( value )`][@stdlib/assert/is-alphanumeric]</span><spanclass="delimiter">: </span><spanclass="description">test whether a string contains only alphanumeric characters.</span>
410
412
- <spanclass="signature">[`isAnagram( str, value )`][@stdlib/assert/is-anagram]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an anagram.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/complex/base/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,7 @@ The namespace contains the following functions:
45
45
46
46
<divclass="namespace-toc">
47
47
48
+
- <spanclass="signature">[`assert`][@stdlib/complex/base/assert]</span><spanclass="delimiter">: </span><spanclass="description">base (i.e., lower-level) complex number assertion functions.</span>
48
49
- <spanclass="signature">[`cast( fcn, nargs, ctor )`][@stdlib/complex/base/cast-return]</span><spanclass="delimiter">: </span><spanclass="description">wrap a function and cast a function's return value to a complex number.</span>
49
50
- <spanclass="signature">[`parse( str )`][@stdlib/complex/base/parse]</span><spanclass="delimiter">: </span><spanclass="description">parses a string representing a complex number into a complex like object `{re: number, im: number}`.</span>
50
51
- <spanclass="signature">[`wrap( fcn, nargs, ctor )`][@stdlib/complex/base/wrap-function]</span><spanclass="delimiter">: </span><spanclass="description">wrap a function accepting complex number arguments to support providing both real and complex numbers.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/complex/base/assert/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,7 @@ The namespace contains the following functions:
46
46
<divclass="namespace-toc">
47
47
48
48
- <spanclass="signature">[`isAlmostEqual( z1, z2, maxULP )`][@stdlib/complex/base/assert/is-almost-equal]</span><spanclass="delimiter">: </span><spanclass="description">test whether two complex numbers are approximately equal within a specified number of ULPs (units in the last place).</span>
49
+
- <spanclass="signature">[`isAlmostSameValue( z1, z2, maxULP )`][@stdlib/complex/base/assert/is-almost-same-value]</span><spanclass="delimiter">: </span><spanclass="description">test whether two complex numbers are approximately the same value within a specified number of ULPs (units in the last place).</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/complex/float32/base/assert/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,7 @@ The namespace contains the following functions:
46
46
<divclass="namespace-toc">
47
47
48
48
- <spanclass="signature">[`isAlmostEqual( z1, z2, maxULP )`][@stdlib/complex/float32/base/assert/is-almost-equal]</span><spanclass="delimiter">: </span><spanclass="description">test whether two single-precision complex floating-point numbers are approximately equal within a specified number of ULPs (units in the last place).</span>
49
+
- <spanclass="signature">[`isAlmostSameValue( z1, z2, maxULP )`][@stdlib/complex/float32/base/assert/is-almost-same-value]</span><spanclass="delimiter">: </span><spanclass="description">test whether two single-precision complex floating-point numbers are approximately the same value within a specified number of ULPs (units in the last place).</span>
49
50
- <spanclass="signature">[`isEqual( z1, z2 )`][@stdlib/complex/float32/base/assert/is-equal]</span><spanclass="delimiter">: </span><spanclass="description">test whether two single-precision complex floating-point numbers are equal.</span>
50
51
- <spanclass="signature">[`isNotEqual( z1, z2 )`][@stdlib/complex/float32/base/assert/is-not-equal]</span><spanclass="delimiter">: </span><spanclass="description">test whether two single-precision complex floating-point numbers are not equal.</span>
51
52
- <spanclass="signature">[`isSameValueZero( z1, z2 )`][@stdlib/complex/float32/base/assert/is-same-value-zero]</span><spanclass="delimiter">: </span><spanclass="description">test whether two single-precision complex floating-point numbers are the same value.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/complex/float64/base/assert/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,7 @@ The namespace contains the following functions:
46
46
<divclass="namespace-toc">
47
47
48
48
- <spanclass="signature">[`isAlmostEqual( z1, z2, maxULP )`][@stdlib/complex/float64/base/assert/is-almost-equal]</span><spanclass="delimiter">: </span><spanclass="description">test whether two double-precision complex floating-point numbers are approximately equal within a specified number of ULPs (units in the last place).</span>
49
+
- <spanclass="signature">[`isAlmostSameValue( z1, z2, maxULP )`][@stdlib/complex/float64/base/assert/is-almost-same-value]</span><spanclass="delimiter">: </span><spanclass="description">test whether two double-precision complex floating-point numbers are approximately the same value within a specified number of ULPs (units in the last place).</span>
49
50
- <spanclass="signature">[`isEqual( z1, z2 )`][@stdlib/complex/float64/base/assert/is-equal]</span><spanclass="delimiter">: </span><spanclass="description">test whether two double-precision complex floating-point numbers are equal.</span>
50
51
- <spanclass="signature">[`isNotEqual( z1, z2 )`][@stdlib/complex/float64/base/assert/is-not-equal]</span><spanclass="delimiter">: </span><spanclass="description">test whether two double-precision complex floating-point numbers are not equal.</span>
51
52
- <spanclass="signature">[`isSameValueZero( z1, z2 )`][@stdlib/complex/float64/base/assert/is-same-value-zero]</span><spanclass="delimiter">: </span><spanclass="description">test whether two double-precision complex floating-point numbers are the same value.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/number/float32/base/assert/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,7 @@ The namespace contains the following functions:
46
46
<divclass="namespace-toc">
47
47
48
48
- <spanclass="signature">[`isAlmostEqual( a, b, maxULP )`][@stdlib/number/float32/base/assert/is-almost-equal]</span><spanclass="delimiter">: </span><spanclass="description">test if two single-precision floating-point numbers are approximately equal within a specified number of ULPs (units in the last place).</span>
49
+
- <spanclass="signature">[`isAlmostSameValue( a, b, maxULP )`][@stdlib/number/float32/base/assert/is-almost-same-value]</span><spanclass="delimiter">: </span><spanclass="description">test if two single-precision floating-point numbers are approximately the same value within a specified number of ULPs (units in the last place).</span>
49
50
- <spanclass="signature">[`isSameValueZero( a, b )`][@stdlib/number/float32/base/assert/is-same-value-zero]</span><spanclass="delimiter">: </span><spanclass="description">test if two single-precision floating-point numbers are the same value.</span>
50
51
- <spanclass="signature">[`isSameValue( a, b )`][@stdlib/number/float32/base/assert/is-same-value]</span><spanclass="delimiter">: </span><spanclass="description">test if two single-precision floating-point numbers are the same value.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/number/float64/base/assert/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,7 @@ The namespace contains the following functions:
46
46
<divclass="namespace-toc">
47
47
48
48
- <spanclass="signature">[`isAlmostEqual( a, b, maxULP )`][@stdlib/number/float64/base/assert/is-almost-equal]</span><spanclass="delimiter">: </span><spanclass="description">test if two double-precision floating-point numbers are approximately equal within a specified number of ULPs (units in the last place).</span>
49
+
- <spanclass="signature">[`isAlmostSameValue( a, b, maxULP )`][@stdlib/number/float64/base/assert/is-almost-same-value]</span><spanclass="delimiter">: </span><spanclass="description">test if two double-precision floating-point numbers are approximately the same value within a specified number of ULPs (units in the last place).</span>
49
50
- <spanclass="signature">[`isSameValueZero( a, b )`][@stdlib/number/float64/base/assert/is-same-value-zero]</span><spanclass="delimiter">: </span><spanclass="description">test if two double-precision floating-point numbers are the same value.</span>
50
51
- <spanclass="signature">[`isSameValue( a, b )`][@stdlib/number/float64/base/assert/is-same-value]</span><spanclass="delimiter">: </span><spanclass="description">test if two double-precision floating-point numbers are the same value.</span>
0 commit comments