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
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -390,6 +390,7 @@ The remaining namespace utilities are as follows:
390
390
- <spanclass="signature">[`isDataView( value )`][@stdlib/assert/is-dataview]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a DataView.</span>
391
391
- <spanclass="signature">[`isDigitString( value )`][@stdlib/assert/is-digit-string]</span><spanclass="delimiter">: </span><spanclass="description">test whether a string contains only numeric digits.</span>
392
392
- <spanclass="signature">[`isDomainName( value )`][@stdlib/assert/is-domain-name]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a domain name.</span>
393
+
- <spanclass="signature">[`isDurationString( value )`][@stdlib/assert/is-duration-string]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is a duration string.</span>
393
394
- <spanclass="signature">[`isEmailAddress( value )`][@stdlib/assert/is-email-address]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an email address.</span>
394
395
- <spanclass="signature">[`isEmptyCollection( value )`][@stdlib/assert/is-empty-collection]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an empty collection.</span>
395
396
- <spanclass="signature">[`isEmptyObject( value )`][@stdlib/assert/is-empty-object]</span><spanclass="delimiter">: </span><spanclass="description">test if a value is an empty object.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/complex/README.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,7 @@ The namespace constains complex number constructors.
45
45
46
46
<divclass="namespace-toc">
47
47
48
+
- <spanclass="signature">[`base`][@stdlib/complex/base]</span><spanclass="delimiter">: </span><spanclass="description">base (i.e., lower-level) complex number functions.</span>
48
49
- <spanclass="signature">[`complex( real, imag[, dtype] )`][@stdlib/complex/cmplx]</span><spanclass="delimiter">: </span><spanclass="description">create a complex number.</span>
49
50
- <spanclass="signature">[`complexCtors( dtype )`][@stdlib/complex/ctors]</span><spanclass="delimiter">: </span><spanclass="description">complex number constructors.</span>
50
51
- <spanclass="signature">[`complexDataType( value )`][@stdlib/complex/dtype]</span><spanclass="delimiter">: </span><spanclass="description">return the data type of a complex number.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/complex/base/README.md
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,12 @@ The namespace contains the following functions:
43
43
44
44
<!-- <toc pattern="*"> -->
45
45
46
+
<divclass="namespace-toc">
47
+
48
+
- <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/math/base/assert/README.md
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -55,12 +55,16 @@ var o = ns;
55
55
- <spanclass="signature">[`isInteger( x )`][@stdlib/math/base/assert/is-integer]</span><spanclass="delimiter">: </span><spanclass="description">test if a finite double-precision floating-point number is an integer.</span>
56
56
- <spanclass="signature">[`isnan( x )`][@stdlib/math/base/assert/is-nan]</span><spanclass="delimiter">: </span><spanclass="description">test if a double-precision floating-point numeric value is NaN.</span>
57
57
- <spanclass="signature">[`isnanf( x )`][@stdlib/math/base/assert/is-nanf]</span><spanclass="delimiter">: </span><spanclass="description">test if a single-precision floating-point numeric value is NaN.</span>
58
+
- <spanclass="signature">[`isNegativeFinite( x )`][@stdlib/math/base/assert/is-negative-finite]</span><spanclass="delimiter">: </span><spanclass="description">test if a double-precision floating-point numeric value is a negative finite number.</span>
58
59
- <spanclass="signature">[`isNegativeInteger( x )`][@stdlib/math/base/assert/is-negative-integer]</span><spanclass="delimiter">: </span><spanclass="description">test if a finite double-precision floating-point number is a negative integer.</span>
59
60
- <spanclass="signature">[`isNegativeZero( x )`][@stdlib/math/base/assert/is-negative-zero]</span><spanclass="delimiter">: </span><spanclass="description">test if a double-precision floating-point numeric value is negative zero.</span>
60
61
- <spanclass="signature">[`isNegativeZerof( x )`][@stdlib/math/base/assert/is-negative-zerof]</span><spanclass="delimiter">: </span><spanclass="description">test if a single-precision floating-point numeric value is negative zero.</span>
62
+
- <spanclass="signature">[`isNonNegativeFinite( x )`][@stdlib/math/base/assert/is-nonnegative-finite]</span><spanclass="delimiter">: </span><spanclass="description">test if a numeric value is a nonnegative finite number.</span>
61
63
- <spanclass="signature">[`isNonNegativeInteger( x )`][@stdlib/math/base/assert/is-nonnegative-integer]</span><spanclass="delimiter">: </span><spanclass="description">test if a finite double-precision floating-point number is a nonnegative integer.</span>
64
+
- <spanclass="signature">[`isNonPositiveFinite( x )`][@stdlib/math/base/assert/is-nonpositive-finite]</span><spanclass="delimiter">: </span><spanclass="description">test if a numeric value is a nonpositive finite number.</span>
62
65
- <spanclass="signature">[`isNonPositiveInteger( x )`][@stdlib/math/base/assert/is-nonpositive-integer]</span><spanclass="delimiter">: </span><spanclass="description">test if a finite double-precision floating-point number is a nonpositive integer.</span>
63
66
- <spanclass="signature">[`isOdd( x )`][@stdlib/math/base/assert/is-odd]</span><spanclass="delimiter">: </span><spanclass="description">test if a finite numeric value is an odd number.</span>
67
+
- <spanclass="signature">[`isPositiveFinite( x )`][@stdlib/math/base/assert/is-positive-finite]</span><spanclass="delimiter">: </span><spanclass="description">test if a double-precision floating-point numeric value is a positive finite number.</span>
64
68
- <spanclass="signature">[`isPositiveInteger( x )`][@stdlib/math/base/assert/is-positive-integer]</span><spanclass="delimiter">: </span><spanclass="description">test if a finite double-precision floating-point number is a positive integer.</span>
65
69
- <spanclass="signature">[`isPositiveZero( x )`][@stdlib/math/base/assert/is-positive-zero]</span><spanclass="delimiter">: </span><spanclass="description">test if a double-precision floating-point numeric value is positive zero.</span>
66
70
- <spanclass="signature">[`isPositiveZerof( x )`][@stdlib/math/base/assert/is-positive-zerof]</span><spanclass="delimiter">: </span><spanclass="description">test if a single-precision floating-point numeric value is positive zero.</span>
- <spanclass="signature">[`gammaln( x )`][@stdlib/math/base/special/gammaln]</span><spanclass="delimiter">: </span><spanclass="description">natural logarithm of the gamma function.</span>
261
+
- <spanclass="signature">[`gammasgn( x )`][@stdlib/math/base/special/gammasgn]</span><spanclass="delimiter">: </span><spanclass="description">sign of the gamma function.</span>
261
262
- <spanclass="signature">[`gcd( a, b )`][@stdlib/math/base/special/gcd]</span><spanclass="delimiter">: </span><spanclass="description">compute the greatest common divisor (gcd).</span>
262
263
- <spanclass="signature">[`heaviside( x[, continuity] )`][@stdlib/math/base/special/heaviside]</span><spanclass="delimiter">: </span><spanclass="description">evaluate the Heaviside function.</span>
263
264
- <spanclass="signature">[`hypot( x, y )`][@stdlib/math/base/special/hypot]</span><spanclass="delimiter">: </span><spanclass="description">compute the hypotenuse avoiding overflow and underflow.</span>
@@ -506,6 +507,8 @@ console.log( objectKeys( special ) );
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/strided/README.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,7 @@ The namespace contains the following:
45
45
46
46
<divclass="namespace-toc">
47
47
48
+
- <spanclass="signature">[`ops`][@stdlib/math/strided/ops]</span><spanclass="delimiter">: </span><spanclass="description">strided array math operations.</span>
48
49
- <spanclass="signature">[`special`][@stdlib/math/strided/special]</span><spanclass="delimiter">: </span><spanclass="description">strided array special math functions.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/ndarray/README.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,7 @@ In addition, the namespace contaians the following multidimensional array utilit
71
71
<divclass="namespace-toc">
72
72
73
73
- <spanclass="signature">[`ndarrayCastingModes()`][@stdlib/ndarray/casting-modes]</span><spanclass="delimiter">: </span><spanclass="description">list of ndarray casting modes.</span>
74
+
- <spanclass="signature">[`dispatch( fcns, types, data, nargs, nin, nout )`][@stdlib/ndarray/dispatch]</span><spanclass="delimiter">: </span><spanclass="description">create an ndarray function interface which performs multiple dispatch.</span>
74
75
- <spanclass="signature">[`ndarrayDataTypes()`][@stdlib/ndarray/dtypes]</span><spanclass="delimiter">: </span><spanclass="description">list of ndarray data types.</span>
75
76
- <spanclass="signature">[`scalar2ndarray( value[, dtype] )`][@stdlib/ndarray/from-scalar]</span><spanclass="delimiter">: </span><spanclass="description">convert a scalar value to a zero-dimensional ndarray.</span>
76
77
- <spanclass="signature">[`ind2sub( shape, idx[, options] )`][@stdlib/ndarray/ind2sub]</span><spanclass="delimiter">: </span><spanclass="description">convert a linear index to an array of subscripts.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/number/float64/README.md
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,8 @@ The namespace contains the following:
46
46
<divclass="namespace-toc">
47
47
48
48
- <spanclass="signature">[`base`][@stdlib/number/float64/base]</span><spanclass="delimiter">: </span><spanclass="description">base utilities for double-precision floating-point numbers.</span>
49
+
- <spanclass="signature">[`reviver( key, value )`][@stdlib/number/float64/reviver]</span><spanclass="delimiter">: </span><spanclass="description">revive a JSON-serialized number.</span>
50
+
- <spanclass="signature">[`toJSON( x )`][@stdlib/number/float64/to-json]</span><spanclass="delimiter">: </span><spanclass="description">return a JSON representation of a number.</span>
0 commit comments