Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 481 Bytes

File metadata and controls

11 lines (7 loc) · 481 Bytes

Array Buffers

Crate API

Highly optimized fixed-capacity buffers stored on the stack.

Deque 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);