Function intersection

  • Obtain values present in both sets.

    Type Parameters

    • T

    Parameters

    • x: Set<T>

      a set

    • y: Iterable<T>

      another set

    Returns Set<T>

    x ∩ y = {v | v ∈ x, v ∈ y}

Generated using TypeDoc