|
5 | 5 | ### Table of Contents
|
6 | 6 |
|
7 | 7 | - [variadic](#variadic)
|
| 8 | + - [absoluteValue](#absolutevalue) |
8 | 9 | - [average](#average)
|
9 | 10 | - [factorial](#factorial)
|
10 | 11 | - [isAscending](#isascending)
|
| 12 | + - [isComposit](#iscomposit) |
11 | 13 | - [isDecimal](#isdecimal)
|
12 | 14 | - [isDescending](#isdescending)
|
13 | 15 | - [isEmpty](#isempty)
|
14 | 16 | - [isEqual](#isequal)
|
15 | 17 | - [isEven](#iseven)
|
| 18 | + - [isIntegers](#isintegers) |
16 | 19 | - [isNegativeInteger](#isnegativeinteger)
|
17 | 20 | - [isNegativeNumber](#isnegativenumber)
|
18 | 21 | - [isOdd](#isodd)
|
|
25 | 28 | - [mode](#mode)
|
26 | 29 | - [populationStandardDeviation](#populationstandarddeviation)
|
27 | 30 | - [populationVariance](#populationvariance)
|
| 31 | + - [range](#range) |
28 | 32 | - [sampleStandardDeviation](#samplestandarddeviation)
|
29 | 33 | - [sampleVariance](#samplevariance)
|
30 | 34 | - [sum](#sum)
|
31 | 35 |
|
32 | 36 | ## variadic
|
33 | 37 |
|
| 38 | +### absoluteValue |
| 39 | + |
| 40 | +This function converts all numbers to a positive number |
| 41 | + |
| 42 | +**Parameters** |
| 43 | + |
| 44 | +- `params` **...any** One or more parameters. |
| 45 | + |
| 46 | +**Meta** |
| 47 | + |
| 48 | +- **author**: tdnelson2 |
| 49 | + |
34 | 50 | ### average
|
35 | 51 |
|
36 | 52 | This function caculates the average of the numerical parameters
|
@@ -67,6 +83,18 @@ This function evaluates whether the parameters are in ascending order
|
67 | 83 |
|
68 | 84 | - **author**: scottwestover
|
69 | 85 |
|
| 86 | +### isComposit |
| 87 | + |
| 88 | +This function evaluates whether all numerical parameters are composit |
| 89 | + |
| 90 | +**Parameters** |
| 91 | + |
| 92 | +- `params` **...any** One or more parameters. |
| 93 | + |
| 94 | +**Meta** |
| 95 | + |
| 96 | +- **author**: tdnelson2 |
| 97 | + |
70 | 98 | ### isDecimal
|
71 | 99 |
|
72 | 100 | This function evaluates whether all the parameters are decimal values
|
@@ -127,6 +155,18 @@ This function evaluates whether all parameters are even
|
127 | 155 |
|
128 | 156 | - **author**: scottwestover
|
129 | 157 |
|
| 158 | +### isIntegers |
| 159 | + |
| 160 | +This function evaluates whether all parameters are integers |
| 161 | + |
| 162 | +**Parameters** |
| 163 | + |
| 164 | +- `params` **...any** One or more parameters. |
| 165 | + |
| 166 | +**Meta** |
| 167 | + |
| 168 | +- **author**: someyoungideas |
| 169 | + |
130 | 170 | ### isNegativeInteger
|
131 | 171 |
|
132 | 172 | This function evaluates whether all integer parameters are negative
|
@@ -271,6 +311,18 @@ This function calculates the variance
|
271 | 311 |
|
272 | 312 | - **author**: devNoiseConsulting
|
273 | 313 |
|
| 314 | +### range |
| 315 | + |
| 316 | +This function returns the difference between the largest and smallest values |
| 317 | + |
| 318 | +**Parameters** |
| 319 | + |
| 320 | +- `params` **...any** One or more parameters. |
| 321 | + |
| 322 | +**Meta** |
| 323 | + |
| 324 | +- **author**: tdnelson2 |
| 325 | + |
274 | 326 | ### sampleStandardDeviation
|
275 | 327 |
|
276 | 328 | This function calculates the sample standard deviation
|
|
0 commit comments