array_buf 0.1.0

Highly optimized fixed-capacity deque buffer stored on stack
Documentation
  • Coverage
  • 100%
    3 out of 3 items documented0 out of 0 items with examples
  • Size
  • Source code size: 38.75 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.94 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • RoDmitry/array_buf
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • RoDmitry

Array Buffer

Crate API

Highly optimized fixed-capacity deque buffer stored on stack.

Todo:

  • iter() is not implemented, but there is as_slices();
  • Can become a true ring buffer. It can overwrite an old element, but it needs to drop it (for not plain). Increment both start and end (start == end);