Function lessEqualThan

  • Checks if the interval x is less or equal than y i.e. if all the values of x are lower or equal to the left endpoint of y

    Example

    Interval.lessEqualThan(
    Interval(2, 3),
    Interval(3, 5)
    ) // true

    Returns

    Parameters

    Returns boolean

Generated using TypeDoc