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/_tools/eslint/rules/README.md
+3
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,7 @@ var eslint = rules;
65
65
- <spanclass="signature">[`new-cap-array`][@stdlib/_tools/eslint/rules/new-cap-array]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule enforcing that the `Array` constructor is invoked with the `new` keyword.</span>
66
66
- <spanclass="signature">[`new-cap-error`][@stdlib/_tools/eslint/rules/new-cap-error]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule enforcing that error constructors are invoked with the `new` keyword.</span>
67
67
- <spanclass="signature">[`new-cap-regexp`][@stdlib/_tools/eslint/rules/new-cap-regexp]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule enforcing that the `RegExp` constructor is invoked with the `new` keyword.</span>
68
+
- <spanclass="signature">[`no-builtin-big-int`][@stdlib/_tools/eslint/rules/no-builtin-big-int]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule disallowing the use of the built-in global `BigInt` literal syntax and constructor.</span>
68
69
- <spanclass="signature">[`no-builtin-math`][@stdlib/_tools/eslint/rules/no-builtin-math]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule enforcing that `stdlib` equivalents are used instead of the built-in global `Math` object.</span>
69
70
- <spanclass="signature">[`no-dynamic-exports`][@stdlib/_tools/eslint/rules/no-dynamic-exports]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule enforcing that only statically analyzable values are exported.</span>
70
71
- <spanclass="signature">[`no-dynamic-require`][@stdlib/_tools/eslint/rules/no-dynamic-require]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule enforcing that `require()` calls have only string literals as arguments.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/README.md
-3
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,6 @@ The namespace contains the following statistical functions:
71
71
- <spanclass="signature">[`dmskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dmskmax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a double-precision floating-point strided array according to a mask.</span>
72
72
- <spanclass="signature">[`dmskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dmskmin]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a double-precision floating-point strided array according to a mask.</span>
73
73
- <spanclass="signature">[`dmskrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dmskrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a double-precision floating-point strided array according to a mask.</span>
74
-
- <spanclass="signature">[`dnanmeanors( N, x, strideX )`][@stdlib/stats/strided/dnanmeanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using ordinary recursive summation.</span>
75
74
- <spanclass="signature">[`dnanmeanpn( N, x, strideX )`][@stdlib/stats/base/dnanmeanpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using a two-pass error correction algorithm.</span>
76
75
- <spanclass="signature">[`dnanmeanpw( N, x, strideX )`][@stdlib/stats/base/dnanmeanpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using pairwise summation.</span>
77
76
- <spanclass="signature">[`dnanmeanwd( N, x, strideX )`][@stdlib/stats/base/dnanmeanwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array, using Welford's algorithm and ignoring `NaN` values.</span>
0 commit comments