cbuf

Crates.iocbuf
lib.rscbuf
version0.1.1
sourcesrc
created_at2016-09-05 05:27:50.965446
updated_at2016-09-16 06:45:30.7544
descriptionNon-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.
homepagehttps://github.com/dpc/cbuf-rs
repositoryhttps://github.com/dpc/cbuf-rs
max_upload_size
id6244
size30,403
Rett Berg (vitiral)

documentation

https://dpc.github.io/cbuf-rs/

README

cbuf - Circular buffer

Travis CI Build Status crates.io Gitter Chat
Documentation

Introduction

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.

Usage

In Carto.toml

[dependencies]
cbuf = "*"

In src/main.rs:

extern crate cbuf;
Commit count: 19

cargo fmt