Function lt

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

    Example

    Interval.lessThan(
    Interval(2, 3),
    Interval(4, 5)
    ) // true

    Example

    Interval.lessThan(
    Interval(4, 5),
    Interval(2, 3)
    ) // false

    Returns

    Parameters

    Returns boolean

Generated using TypeDoc