Interface Set<T>

Type Parameters

  • T

Hierarchy

  • Set

Properties

[toStringTag]: string
size: number

Returns

the number of (unique) elements in Set.

Methods

  • Appends a new element with a specified value to the end of the Set.

    Parameters

    • value: T

    Returns Set<T>

  • Returns void

  • Removes a specified value from the Set.

    Parameters

    • value: T

    Returns boolean

    Returns true if an element in the Set existed and has been removed, or false if the element does not exist.

  • Executes a provided function once per each value in the Set object, in insertion order.

    Parameters

    • callbackfn: ((value, value2, set) => void)
        • (value, value2, set): void
        • Parameters

          • value: T
          • value2: T
          • set: Set<T>

          Returns void

    • Optional thisArg: any

    Returns void

  • Parameters

    • value: T

    Returns boolean

    a boolean indicating whether an element with the specified value exists in the Set or not.