Crates.io | dpc-cbuf |
lib.rs | dpc-cbuf |
version | 0.0.1 |
source | src |
created_at | 2015-06-20 04:34:42.70534 |
updated_at | 2015-12-11 23:58:31.338387 |
description | Non-thread-shareable, simple and efficient Circular Buffer implementation that can store N elements when full (typical circular buffer implementations store N-1) without using separate flags. |
homepage | https://github.com/dpc/cbuf-rs |
repository | https://github.com/dpc/cbuf-rs |
max_upload_size | |
id | 2426 |
size | 27,607 |
Non-thread-shareable, simple and efficient Circular Buffer implementation that can store N elements when full (typical circular buffer implementations store N-1) without using separate flags.
Uses only core
so can be used in #[no_std]
projects by using
no_std
feature.
In Carto.toml
[dependencies]
dpc-cbuf = "*"
In src/main.rs
:
extern crate cbuf;