no_std_collections 0.1.4

Auxiliary structures and traits for using dynamically resizable arrays (Vectors) in flexible environments, supporting both std and no_std contexts.
Documentation
1
2
3
4
5
6
#![cfg_attr(feature = "no_std", no_std)]

pub mod stack_vec;
pub mod traits;

pub use stack_vec::StackVec;