Append value to the end of list.
Runtime: O(1).
Get first node.
Runtime: O(1).
Nullable<DLLNode
Get last node.
Runtime: O(1).
Nullable<DLLNode
Remove the last node in list.
Runtime: O(1).
Nullable<DLLNode
Prepend value to the frontend of the list.
Runtime: O(1).
Remove the first node in list
Runtime: O(1).
Nullable<DLLNode
Traverse through the list
Runtime: O(n)
CallableFunction
Generated using TypeDoc
Return the number of nodes in the list
Runtime: O(1).