arraydeque-0.3.1 has been yanked.
arraydeque
A circular buffer with fixed capacity. Requires Rust 1.20+.
This crate is inspired by bluss/arrayvec
Documentation
Usage
First, add the following to your Cargo.toml
:
[]
= "0.3"
Next, add this to your crate root:
extern crate arraydeque;
Currently arraydeque by default links to the standard library, but if you would
instead like to use arraydeque in a #![no_std]
situation or crate you can
request this via:
[]
= { = "0.3", = false }
Example
extern crate arraydeque;
use ArrayDeque;
Contribution
All kinds of contribution are welcomed.
- Issus. Feel free to open an issue when you find typos, bugs, or have any question.
- Pull requests. New collection, better implementation, more tests, more documents and typo fixes are all welcomed.
License
Licensed under MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)