Class NormalizedMap<V>

Type Parameters

  • V

Hierarchy

  • Map<string, V>
    • NormalizedMap

Constructors

Properties

[toStringTag]: string
size: number

Returns

the number of elements in the Map.

KEY_REGEXP: RegExp = ...
[species]: MapConstructor

Methods

  • Returns an iterable of entries in the map.

    Returns IterableIterator<[string, V]>

  • Returns void

  • Parameters

    • key: string

    Returns boolean

  • Returns an iterable of key, value pairs for every entry in the map.

    Returns IterableIterator<[string, V]>

  • Executes a provided function once per each key/value pair in the Map, in insertion order.

    Parameters

    • callbackfn: ((value, key, map) => void)
        • (value, key, map): void
        • Parameters

          • value: V
          • key: string
          • map: Map<string, V>

          Returns void

    • Optional thisArg: any

    Returns void

  • Parameters

    • key: string

    Returns boolean

  • Returns an iterable of keys in the map

    Returns IterableIterator<string>

  • Parameters

    • key: string
    • value: V

    Returns this

  • Returns an iterable of values in the map

    Returns IterableIterator<V>

  • Parameters

    • key: string

    Returns string

  • Parameters

    • regexp: RegExp

    Returns void

Generated using TypeDoc