Pacote
    Preparing search index...
    • Creates a subset of elements from a start index (inclusive) till the end of the list.

      Type Parameters

      • T

      Parameters

      • start: number

        Starting index (inclusive).

      • list: LinkedList<T>

        Linked list.

      Returns LinkedList<T>

      A new linked list with a subset of elements between start and the end of the list.

    • Creates a subset of elements from a start index (inclusive) to an end index (non-inclusive) of the list.

      Type Parameters

      • T

      Parameters

      • start: number

        Starting index (inclusive).

      • end: number

        Ending index (non-inclusive).

      • list: LinkedList<T>

        Linked list.

      Returns LinkedList<T>

      A new linked list with a subset of elements between start and end of the list.