pub fn allocate_aligned_slice<AlignTo, T: Default>(count: usize) -> Box<[T]>
Allocate a boxed slice of count Ts aligned to the AlignTo type.
count
T
AlignTo
Panics if count is 0 or memory allocation fails.