//! This module contains utility functions for [`std::vec::Vec`] as well as some similar datastructures.
//! A [`Stec`] is like a Vec but entirely on the stack.
//! This means to things:
//! - No allocation required (yay no-std)
//! - No growing (oh no)
use MaybeUninit;
/// A struct that should behave just like a [`std::vec::Vec`] but all the data is on the Stack.
///
/// Can be used in code where you know how much data you will get to avoid allocators in that part.
/// Offers all the functionality you might expect from a [`std::vec::Vec`] except the stuff explicitly for allocating memory.