Crates.io | holodeque |
lib.rs | holodeque |
version | 0.2.0 |
source | src |
created_at | 2021-07-06 23:28:58.31352 |
updated_at | 2021-07-08 17:09:40.564087 |
description | Array- and slice-backed double-ended queues in 100% safe Rust. |
homepage | |
repository | https://github.com/dataphract/holodeque |
max_upload_size | |
id | 419727 |
size | 123,772 |
Array- and slice-backed double-ended queues in 100% safe Rust.
This crate provides ArrayDeque
and SliceDeque
, fixed-size ring buffers with
interfaces similar to the standard library's VecDeque
.
holodeque
makes use of the unstable array_map
feature to provide Default
initialization of arbitrarily-sized arrays. As a result, a nightly
compiler
is required until this feature is stabilized. See the tracking issue for its
current status.
Licensed under either of
LICENSE-APACHE
or http://www.apache.org/licenses/LICENSE-2.0)LICENSE-MIT
or http://opensource.org/licenses/MIT)at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.