githubEdit

minGreaterThan()

Checks whether the value is less than a minimum range of a specified `Range` object

Range.prototype.minGreaterThan()

The minGreaterThan() method checks whether the value is less than a minimum range of a specified Range object.

range.class.ts
public minGreaterThan(value: number): boolean {
  return this.#minimum.greaterThan(value);
}

Parameters

The value of numberarrow-up-right type to test.

Return type

Returns

The return value is a booleanarrow-up-right type indicating whether the given value is less than minimum range of a specified Range object.

Example usage

Last updated