📄️ constructor
Instantiate a DoublyLinkedList with 0 items, 1 item, or a collection of items.
📄️ add_front
Adds an item to the front of the DoublyLinkedList
📄️ add_back
Adds an item to the back of the Linked List
📄️ add_at_index
Adds an item to the Linked List at a specified index
📄️ remove_front
Remove the item at the front of the linked list
📄️ remove_back
Remove the item at the back of the linked list
📄️ remove_at_index
Remove an item from a specified index
📄️ update
Update the value of an item at a specified index
📄️ get
get the value of an item at a specified index
📄️ map
Maps the current DoublyLinkedList to a function. Returns a new DoublyLinkedList
📄️ filter
Filter the DoublyLinkedList based on a function. Returns a new DoublyLinkedList
📄️ to_list
Converts the DoublyLinkedList to a list
📄️ invert
Reverses the Doubly Linked List.