Adds to the head of the DLL
Adds to the tail of the DLL
Call this function when you want to iterate through the entire list of items.
call back function
Call this function to iterate through the list of items in reverse.
call back function
Call this function when you want to iterate through the items in the linked list but don't want to iterate through all of them.
Return true in the callback to stop this function from continuing to iterate through the items.
callback function
Returns the size of the DLL
Returns the value of the head node. Null if doesn't exist.
value of the node at the head
Returns the value of the tail node. False if doesn't exist.
value of the node at the tail
Generated using TypeDoc
Call to create the DLL and to optionally pass in a item to be added to the DLL head.