ivanseidel / LinkedList

🔗 A fully implemented LinkedList made to work with general Microcontrollers and Arduino projects
MIT License
347 stars 120 forks source link

Cache improvement #56

Open vortigont opened 3 years ago

vortigont commented 3 years ago
ivanseidel commented 2 years ago

Really interesting. Its missing a few docs for people to know how to use the new methods. Also, have you tested on arduino platform? is it compliant?

vortigont commented 2 years ago

for sure it works pretty fine with Arduino. Overloaded constructors mostly used internally to optimize node adding/creating, not much of a use for user actually, unless you want to create a list of lists :)) The other methods like head()/tail() are pretty obvious, but could be mentioned in examples also.