Interface WeakSet<T>

Type Parameters

  • T extends object

Hierarchy

  • WeakSet

Properties

Methods

Properties

[toStringTag]: string

Methods

  • Appends a new object to the end of the WeakSet.

    Parameters

    • value: T

    Returns WeakSet<T>

  • Removes the specified element from the WeakSet.

    Parameters

    • value: T

    Returns boolean

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

  • Parameters

    • value: T

    Returns boolean

    a boolean indicating whether an object exists in the WeakSet or not.