stack

Crates.iostack
lib.rsstack
version0.4.0
sourcesrc
created_at2015-08-23 09:02:20.2731
updated_at2020-09-24 17:48:02.331581
descriptionDSTs and arrays on the stack!
homepage
repositoryhttps://github.com/arcnmx/stack-rs
max_upload_size
id2901
size46,732
(arcnmx)

documentation

http://docs.rs/stack/

README

stack

travis-badge release-badge docs-badge license-badge

Implements dynamically sized types over stack allocated arrays.

  • The Vector trait exposes a generic trait for Vec-like operations.

  • ArrayVec implements a Vector interface over a fixed-size array.

  • SmallVec abstracts over a stack allocated ArrayVec, and falls back to a heap Vec upon overflow.

  • SmallDST holds a DST such as a closure or other types in a Vector.

Commit count: 21

cargo fmt