heapless icon indicating copy to clipboard operation
heapless copied to clipboard

Heapless, `static` friendly data structures

Results 105 heapless issues
Sort by recently updated
recently updated
newest added

do you have a roadmap to releasing a v1.0.0? it would be cool if you could create the tickets for what you think is missing for v1.0.0 and assign them...

question

Hi, I'm fairly new to Rust, so I apologize in advance if my issue is not clear or not exact. I've being trying to use `serde-json-core` with Zenoh and I...

question

Rewrite Iterator for OldestOrdered and add DoubleEndedIterator implementation. Update HistoryBuffer oldest_ordered() to reflect changes.

Add `vec` and `vec_with_cap` macros Resolves #344

Would be very useful and seems relatively straightforward to implement ✌️

enhancement

This PR is still in draft but feel free to review or comment on it Closes #330

I often reach for `heapless::Vec`, but find myself having to write a custom slice wrapper due to peripheral alignment constraints have you had any thoughts about introducing a way to...

enhancement
question

In [`sealed.rs`](https://github.com/japaric/heapless/blob/644653bf3b831c6bb4963be2de24804acf5e5001/src/sealed.rs), there are a number of associated constants which are used in const fns to try and trigger compile failures when const generics don't match particular requirements. These const...

bug

I'm working on a no_std project targeting some armv7 CPUs. I would like to use `heapless::pool` but I am having issues because it is not available on my `x86_64` host...

enhancement
question

## Motivation There currently is no interface for removing elements from the HistoryBuffer. ## Added - `HistoryBuffer.pop_oldest()` - `HistoryBuffer.filled()` getter to replace `filled` member variable - Unit test for `HistoryBuffer.pop_oldest()`...