You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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...
The text was updated successfully, but these errors were encountered:
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.
Hi,
I see you also provide derived types such as
StaticHeap
andStaticString
. What would you think about adding aStaticVecDeque
type mimicking the standardVecDeque
? It would be super useful although it cannot be directly implemented fromStaticVec
since some elements on the front of the vec might be uninitialized...The text was updated successfully, but these errors were encountered: