Crates.io | cbuf |
lib.rs | cbuf |
version | 0.1.1 |
source | src |
created_at | 2016-09-05 05:27:50.965446 |
updated_at | 2016-09-16 06:45:30.7544 |
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 | 6244 |
size | 30,403 |
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 additional flags.
Uses only core
so can be used in #[no_std]
projects by using
no_std
feature.
In Carto.toml
[dependencies]
cbuf = "*"
In src/main.rs
:
extern crate cbuf;