heapless
heapless copied to clipboard
Heapless, `static` friendly data structures
In #321 it was mentioned that there were upstream methods from `IndexMap` that hadn't been ported yet, `shift_remove` in that particular case. I don't know if this is important enough...
General discussion / notes / thoughts about stabilizing heapless with a 1.0 release. # Checklist - [ ] Review issues in the [v1.0.0 milestone](https://github.com/rust-embedded/heapless/milestone/3) - Planned breaking changes are tracked...
It would be very useful to be able to create a `Deque` from a slice or a heapless Vec using the `from()` or `try_from()` methods. For example: ```rust let deq...
I am working on a no_std embedded comms stack which talks to devices running C applications. The stack uses `heapless::Vec`s to handle the byte streams being sent and received, and...