@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: null | readonly (readonly [T, U])[]

      Returns CaseInsensitiveMap<T, U>

    • Type Parameters

      • T
      • U

      Parameters

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

      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]>

    • 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 undefined | U

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

    • 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[]>