smallqueue

Crates.iosmallqueue
lib.rssmallqueue
version0.1.0
sourcesrc
created_at2018-11-16 03:24:43.984617
updated_at2018-11-16 03:24:43.984617
descriptionA queue with a no-alloc optimization when the size is 1 or 0.
homepage
repositoryhttps://github.com/gretchenfrage/smallqueue
max_upload_size
id96931
size4,327
Phoenix Kahlo (gretchenfrage)

documentation

README

Small Queue

A FIFO queue which stores its data in-place when containing 0 or 1 elements, but expands to a dynamically sized heap allocation when more elements are inserted, and can free its heap allocation if the size returns later to 1 or 0.

Commit count: 2

cargo fmt