# Array Buffer
[](https://crates.io/crates/array_buf)
[](https://docs.rs/array_buf)
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`);