lessThanSome()

Checks whether the primitive value of a child class is less than some given values

Inequality.prototype.lessThanSome()

Checks whether the primitive valuearrow-up-right of a child class is less than some given values.

inequality.class.ts
public greaterThanSome(...values: number[]): boolean {
  return this.#greater.thanSome(...values);
}

Parameters

A rest parameterarrow-up-right of the numbers to test.

Return type

Returns

The return value is a booleanarrow-up-right indicating whether the primitive valuearrow-up-right of a child class instance is greater than some given values.

Example usage

Last updated