githubEdit

lessThanEvery()

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

Inequality.prototype.lessThanEvery()

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

inequality.class.ts
public lessThanEvery(...values: number[]): boolean {
  return this.#less.thanEvery(...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 less than every value of the given values.

Example usage

Last updated