Function intersection

  • Computes an interval that has all the values that belong to both x and y

    Example

    Interval.intersection(
    Interval(-1, 1),
    Interval(0, 7)
    ) // Interval(0, 1)

    Returns

    Parameters

    Returns Interval

Generated using TypeDoc