Crate array_buf

Crate array_buf 

Source
Expand description

§Array Buffer

Highly optimized fixed-capacity deque buffer stored on stack.

Structs§

ArrayDeque
A fixed capacity deque. Capacity must be in the power of two. If you have plain data, better use ArrayDequePlain.
ArrayDequePlain
A fixed capacity deque for plain data (Copy, no Drop). Capacity must be in the power of two.