nbs.js - v7.0.0-alpha1
    Preparing search index...

    Class SortedIndexMap<Key, Value>

    Type Parameters

    • Key extends number
    • Value

    Hierarchy

    Index

    Properties

    "[species]": MapConstructor
    "[toStringTag]": string
    size: number

    the number of elements in the Map.

    Methods

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

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

      Parameters

      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

      Returns Value | 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

      Returns Value

      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

      Returns Value

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

    • Parameters

      Returns boolean

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

    • Adds a new element with a specified key and value to the Map. If an element with the same key already exists, the element will be updated.

      Parameters

      Returns this

    Constructors

    • Type Parameters

      • Key extends number
      • Value

      Parameters

      • Optionalentries: readonly (readonly [Key, Value])[] | null

      Returns SortedIndexMap<Key, Value>

    • Type Parameters

      • Key extends number
      • Value

      Parameters

      Returns SortedIndexMap<Key, Value>