1 2 3 4 5 6 7 8 9 10 11 12
//! Vector-like facade for arrays allocated entirely on the stack. //! //! Shallow wrapper around an underlying `[T; N]`, which panics if the //! array bounds are exceeded. //! //! ## Rust Version //! //! This version of `stack-buf` requires Rust 1.51 or later. mod vec; pub use vec::StackVec;