I am trying to make some sort of circular stack that should let me add an element at the top, read elements from top to bottom, and eliminate (only when the stack is full) the element at the bottom.
In this regard I thought of adding the C++ Standard Template Library to my code so that I can use a Deque.
The only template library I found was
on PlatformIO IDE, but it seems discontinued as the last update was over a year ago and it has very few downloads in the last month (31).Embedded Template Library by John Wellbelove
Should I trust this library or is there a way of adding the C++ STL to Arduino IDE or PlatformIO IDE ?
Thank you !