Gets the number of nodes actually contained in the KavenLinkedList.
Gets the first node of the KavenLinkedList.
Gets the last node of the KavenLinkedList.
Adds a new node containing the specified value after the specified existing node in the KavenLinkedList.
The new KavenLinkedListNode containing value.
Adds a new node containing the specified value before the specified existing node in the KavenLinkedList.
The new KavenLinkedListNode containing value.
Adds a new node containing the specified value at the start of the KavenLinkedList.
The new KavenLinkedListNode containing value.
Adds a new node containing the specified value at the end of the KavenLinkedList.
The new KavenLinkedListNode containing value.
Removes all nodes from the KavenLinkedList.
Determines whether a value is in the KavenLinkedList.
true if value is found in the KavenLinkedList; otherwise, false.
Finds the first node that contains the specified value.
The first KavenLinkedListNode that contains the specified value, if found; otherwise, undefined.
Finds the last node that contains the specified value.
The last KavenLinkedListNode that contains the specified value, if found; otherwise, undefined.
A random item in the collection without removing it.
Removes the first occurrence of the specified value from the KavenLinkedList.
true if the element containing value is successfully removed; otherwise, false. This method also returns false if value was not found in the original KavenLinkedList.
Removes the node at the start of the KavenLinkedList.
Removes the node at the end of the KavenLinkedList.
Generated using TypeDoc
Represents a doubly-Linked circular list.
In this type of linked list, the next of the last node will point to the first node and the previous pointer of the first node will point to the last node.
1.1.19
2019-03-22