minGreaterThan()
Checks whether the value is less than a minimum range of a specified `Range` object
Range.prototype.minGreaterThan()
Range.prototype.minGreaterThan()
The minGreaterThan()
method checks whether the value
is less than a minimum range of a specified Range
object.
public minGreaterThan(value: number): boolean {
return this.#minimum.greaterThan(value);
}
Parameters
The value of number
type to test.
Return type
Returns
The return value is a boolean
type indicating whether the given value
is less than minimum range of a specified Range
object.
Example usage
// Example usage.
import { Range } from '@angular-package/range';
// Create new instance.
const range = new Range(4, 27);
// Returns true.
range.minGreaterThan(3);
// Returns false.
range.minGreaterThan(4);
Last updated