Gets the first node of the KavenLinkedList.
The first KavenLinkedListNode of the KavenLinkedList.
Gets the last node of the KavenLinkedList.
The last KavenLinkedListNode of the KavenLinkedList.
Adds a new node containing the specified value after the specified existing node in the KavenLinkedList.
The new KavenLinkedListNode containing value.
The KavenLinkedListNode after which to insert newNode.
The value to add to the KavenLinkedList.
Adds a new node containing the specified value before the specified existing node in the KavenLinkedList.
The new KavenLinkedListNode containing value.
The KavenLinkedListNode before which to insert a new KavenLinkedListNode containing value.
The value to add to the KavenLinkedList.
Adds a new node containing the specified value at the start of the KavenLinkedList.
The new KavenLinkedListNode containing value.
The value to add at the start of the KavenLinkedList.
Adds a new node containing the specified value at the end of the KavenLinkedList.
The new KavenLinkedListNode containing value.
The value to add at the end of the KavenLinkedList.
Removes all nodes from the KavenLinkedList.
Determines whether a value is in the KavenLinkedList.
true if value is found in the KavenLinkedList; otherwise, false.
The value to locate in the KavenLinkedList.
Finds the first node that contains the specified value.
The first KavenLinkedListNode that contains the specified value, if found; otherwise, undefined.
he value to locate in the KavenLinkedList.
Finds the last node that contains the specified value.
The last KavenLinkedListNode that contains the specified value, if found; otherwise, undefined.
The value to locate in the KavenLinkedList.
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.
The value to remove from the KavenLinkedList.
Removes the node at the start of the KavenLinkedList.
Removes the node at the end of the KavenLinkedList.
Generated using TypeDoc
Gets the number of nodes actually contained in the KavenLinkedList.
Returns
The number of nodes actually contained in the KavenLinkedList.