Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 479 Bytes

File metadata and controls

11 lines (7 loc) · 479 Bytes

Array Buffer

Crate API

Highly optimized fixed-capacity deque buffer stored on the 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);