LinkedList
LinkedList copied to clipboard
🔗 A fully implemented LinkedList made to work with general Microcontrollers and Arduino projects
Nowhere in the documentation it mentions that the type T must have a no-arg constructor for this to work. Please specify in the documentation explicitly, otherwise figuring it out may...
Deleted the copy constructor and the copy operator because it's not supported. The default copy constructor and operator give you a copy, but when one of them is deleted, that...
### Description **Feature Addition: Iterator Function for LinkedList** This commit adds a new `iterator` function to the `LinkedList` class. The function allows for iterating over the linked list and executing...