Crates.io | stack |
lib.rs | stack |
version | 0.4.0 |
source | src |
created_at | 2015-08-23 09:02:20.2731 |
updated_at | 2020-09-24 17:48:02.331581 |
description | DSTs and arrays on the stack! |
homepage | |
repository | https://github.com/arcnmx/stack-rs |
max_upload_size | |
id | 2901 |
size | 46,732 |
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
.