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