A list that automatically sorts its items to guarantee that they are always in order

Type Parameters

  • T

Constructors

Accessors

Methods

  • Inserts new items into the sorted list and returns the new length

    Parameters

    • Rest...items: T[]

    Returns number

  • Returns the first item matching the given predicate

    Parameters

    • predicate: ((item: T) => boolean)
        • (item): boolean
        • Parameters

          • item: T

          Returns boolean

    Returns undefined | T

  • Removes items from the sorted list and returns the new length

    Parameters

    • Rest...items: T[]

    Returns number