pub type ThinSlice<T> = RawThinSlice<(), T>;Expand description
A thin-pointer slice of T.
This is similar to [T], but the length is stored in the slice itself,
rather than in a separate field, making it a single word in size, instead of two.
Aliased Typeยง
pub struct ThinSlice<T> { /* private fields */ }