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