pub type StackU32<T, const CAP: usize, S = Bare> = Stack<T, CAP, u32, S>;
Available on crate feature
_stack_u32
only.Expand description
A Stack
with a 32-bit index size.
Aliased Typeยง
struct StackU32<T, const CAP: usize, S = Bare> { /* private fields */ }