Interface WeakMap<K, V>

Type Parameters

  • K extends object

  • V

Hierarchy

  • WeakMap

Properties

Methods

Properties

[toStringTag]: string

Methods

  • Removes the specified element from the WeakMap.

    Parameters

    • key: K

    Returns boolean

    true if the element was successfully removed, or false if it was not present.

  • Parameters

    • key: K

    Returns V

    a specified element.

  • Parameters

    • key: K

    Returns boolean

    a boolean indicating whether an element with the specified key exists or not.

  • Adds a new element with a specified key and value.

    Parameters

    • key: K

      Must be an object.

    • value: V

    Returns WeakMap<K, V>