• Returns a new set representing the difference of the given sets. The difference is evaluated from left to right, e.g. Difference(A, B, C) is evaluated as (A - B) - C.

    Type Parameters

    • T

    Parameters

    • Rest...sets: Set<T>[]

      The sets to calculate the difference of.

    Returns Set<T>