Returns the size of the linked list
Converts the doubly linked list into an array
Returns the first element of the list
Returns true if the list is empty
Returns the last element in the list
Adds a new value to the list
Cleans removes all the elements from the list
Refer ICollection.filter
Converts the linked list into a value
Tests if the provided node is a part of the list or not in O(n) time complexity.
Transforms the values inside the list using the transformer function, creating a new list.
Removes the last inserted element
Removes the provided node from the list.
Remove the first element from the list
Creates a new DoublyLinkedList with the provided values.
Generated using TypeDoc
A doubly linked list