📄️ constructor
Instantiate a LinkedList with 0 items, 1 item, or a collection of items.
📄️ add_front
Adds an item to the front of the linkedList
📄️ 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 LinkedList to a function. Returns a new LinkedList
📄️ filter
Filter the Linkedlist based on a function. Returns a new Linkedlist
📄️ to_list
Converts the LinkedList to a list