staticvec icon indicating copy to clipboard operation
staticvec copied to clipboard

Add a `StaticVecDeque` type

Open timothee-haudebourg opened this issue 5 years ago • 2 comments

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...

timothee-haudebourg avatar Sep 21 '20 15:09 timothee-haudebourg

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!

slightlyoutofphase avatar Sep 21 '20 22:09 slightlyoutofphase

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.

slightlyoutofphase avatar Mar 13 '21 23:03 slightlyoutofphase