The value to be clamped.
The minimum value.
The maximum value.
A clamped value in the range [min, max].
Checks if x is between a and b.
The value to test if in range
The beginning of the (inclusive) range
The ending of the (inclusive) range
Whether x is in [a, b]
Returns true only if x is NaN
Returns true if the argument is a number, which is not NaN Numbers represented as strings do not pass this function
Applies the accessor, if provided, to each element of array
and returns the maximum value.
If no maximum value can be computed, returns defaultValue.
Applies the accessor, if provided, to each element of array
and returns the minimum value.
If no minimum value can be computed, returns defaultValue.
Generates an array of consecutive, strictly increasing numbers in the range [start, stop) separeted by step
Generated using TypeDoc
Clamps x to the range [min, max].