ringbuffer-iteration 0.1.0

A no-std ring buffer implementation with iterator support
Documentation
  • Coverage
  • 47.06%
    8 out of 17 items documented0 out of 15 items with examples
  • Size
  • Source code size: 20.36 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.33 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 13s Average build duration of successful builds.
  • all releases: 13s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • ReeceStevens

A ring buffer implementation where newer samples overwrite old samples. This implementation also enables the use of Rust iterators to iterate through the ring buffer in order from oldest to newest entries.

This library is implemented without the use of the standard library, and thus requires passing in a "backing store" of a statically allocated array.