@ac-essentials/misc-util
    Preparing search index...

    Class CaseInsensitiveMap<T, U>

    A case-insensitive Map.

    Keys that are strings are treated in a case-insensitive manner.

    Type Parameters

    • T
    • U

    Hierarchy

    • Map<T, U>
      • CaseInsensitiveMap
    Index

    Constructors

    • Type Parameters

      • T
      • U

      Parameters

      • Optionalentries: readonly (readonly [T, U])[] | null

      Returns CaseInsensitiveMap<T, U>

    • Type Parameters

      • T
      • U

      Parameters

      • Optionaliterable: Iterable<readonly [T, U], any, any> | null

      Returns CaseInsensitiveMap<T, U>

    Properties

    "[toStringTag]": string
    size: number

    the number of elements in the Map.

    "[species]": MapConstructor

    Methods

    • Returns an iterable of entries in the map.

      Returns MapIterator<[T, U]>

    • Removes all elements from the Map.

      Returns void

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

      Returns MapIterator<[T, U]>

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

      Parameters

      • callbackfn: (value: U, key: T, map: Map<T, U>) => void
      • OptionalthisArg: any

      Returns void

    • Returns a specified element from the Map object. If the value that is associated to the provided key is an object, then you will get a reference to that object and any change made to that object will effectively modify it inside the Map.

      Parameters

      • key: T

      Returns U | undefined

      Returns the element associated with the specified key. If no element is associated with the specified key, undefined is returned.

    • Returns a specified element from the Map object. If no element is associated with the specified key, a new element with the value defaultValue will be inserted into the Map and returned.

      Parameters

      • key: T
      • defaultValue: U

      Returns U

      The element associated with the specified key, which will be defaultValue if no element previously existed.

    • Returns a specified element from the Map object. If no element is associated with the specified key, the result of passing the specified key to the callback function will be inserted into the Map and returned.

      Parameters

      • key: T
      • callback: (key: T) => U

      Returns U

      The element associated with the specific key, which will be the newly computed value if no element previously existed.

    • Returns an iterable of keys in the map

      Returns MapIterator<T>

    • Returns an iterable of values in the map

      Returns MapIterator<U>

    • Groups members of an iterable according to the return value of the passed callback.

      Type Parameters

      • K
      • T

      Parameters

      • items: Iterable<T>

        An iterable.

      • keySelector: (item: T, index: number) => K

        A callback which will be invoked for each item in items.

      Returns Map<K, T[]>