pub type ArrayUsize8 = ArrayN<usize, 8>;Expand description
Type alias for 8-element array with usize elements.
This is a convenience type for working with arrays that typically need to store up to 8 dimension sizes or similar metadata.
Aliased Type§
pub struct ArrayUsize8 {
pub len: usize,
pub arr: [usize; 8],
}Fields§
§len: usizeThe current number of elements in use
arr: [usize; 8]The underlying fixed-size array storage