staticvec
staticvec copied to clipboard
Add a `StaticVecDeque` type
Hi,
I see you also provide derived types such as StaticHeap and StaticString. What would you think about adding a StaticVecDeque type mimicking the standard VecDeque? It would be super useful although it cannot be directly implemented from StaticVec since some elements on the front of the vec might be uninitialized...
I'm definitely interested in adding more data structures to the crate. Will take a look to see if there's a reasonable way I can Implement a StaticVecDeque around StaticVec. Thanks for the suggestion!
I'm going to try to actually implement this sometime soon BTW. Sorry for the wait. Took a while to figure out the best approach, and I was working on other stuff for a while also.