The minGreaterThan() method checks whether the is less than a range of a specified object.
range.class.ts
public minGreaterThan(value: number): boolean {
return this.#minimum.greaterThan(value);
}
Parameters
value:
The value of type to test.
Return type
Returns
The return value is a type indicating whether the given is less than range of a specified 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);